Bird
0
0

You wrote Table.Transpose(SalesData) but get an error. Which is the most likely cause?

medium📝 Formula Fix Q14 of 15
Power BI - Data Cleaning with Power Query
You wrote Table.Transpose(SalesData) but get an error. Which is the most likely cause?
ASalesData is not a table but a list or other type.
BYou forgot to import the SalesData table.
CTable.Transpose requires two parameters.
DTranspose only works on numeric columns.
Step-by-Step Solution
Solution:
  1. Step 1: Check input type for Table.Transpose

    Table.Transpose requires a table input. If SalesData is not a table, it causes an error.
  2. Step 2: Evaluate other options

    Importing is unrelated to syntax error; function takes one parameter; transpose works on any data type.
  3. Final Answer:

    SalesData is not a table but a list or other type. -> Option A
  4. Quick Check:

    Input must be a table [OK]
Quick Trick: Ensure input is a table, not a list [OK]
Common Mistakes:
  • Passing lists instead of tables
  • Assuming transpose needs multiple parameters
  • Thinking transpose only works on numbers

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Power BI Quizzes