Bird
0
0

Find the issue in this Power Query step:

medium📝 Formula Fix Q7 of 15
Power BI - Power Query Editor
Find the issue in this Power Query step:
Table.SelectRows(Source, each [Amount] => 100)
AMissing parentheses around condition
BIncorrect comparison operator used
CWrong function name
DSource table is empty
Step-by-Step Solution
Solution:
  1. Step 1: Identify the comparison operator

    The operator '=>' is invalid in Power Query; correct is '>='.
  2. Step 2: Confirm syntax for filtering rows

    Correct syntax uses '>=' to mean 'greater than or equal to'.
  3. Final Answer:

    Incorrect comparison operator used -> Option B
  4. Quick Check:

    Use '>=' not '=>' for comparisons [OK]
Quick Trick: Use '>=' for greater or equal comparisons [OK]
Common Mistakes:
  • Using '=>' instead of '>='
  • Assuming parentheses are mandatory here
  • Confusing function names

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Power BI Quizzes