Bird
0
0

In Power Query M language, how do you correctly apply the Table.Transpose function to a table variable named CustomerData?

easy📝 Conceptual Q3 of 15
Power BI - Data Cleaning with Power Query
In Power Query M language, how do you correctly apply the Table.Transpose function to a table variable named CustomerData?
A<code>Table.Transpose{CustomerData}</code>
B<code>Table.Transpose[CustomerData]</code>
C<code>Table.Transpose(CustomerData)</code>
D<code>Table.Transpose->CustomerData</code>
Step-by-Step Solution
Solution:
  1. Step 1: Identify the function usage

    The Table.Transpose function takes a table as its single argument.
  2. Step 2: Apply the function correctly

    Use parentheses to pass the table variable: Table.Transpose(CustomerData).
  3. Final Answer:

    Table.Transpose(CustomerData) -> Option C
  4. Quick Check:

    Function call syntax with parentheses is standard in M language. [OK]
Quick Trick: Use parentheses to pass tables to functions [OK]
Common Mistakes:
  • Using square brackets instead of parentheses
  • Using curly braces which are for lists
  • Using arrow notation which is invalid here

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Power BI Quizzes