Bird
0
0

Given a table with columns Product, Sales, Date, what will be the column order after applying this Power Query step?

medium📝 Formula Result Q4 of 15
Power BI - Power Query Editor

Given a table with columns Product, Sales, Date, what will be the column order after applying this Power Query step?
Table.ReorderColumns(Source, {"Date", "Product", "Sales"})

ADate, Product, Sales
BProduct, Sales, Date
CSales, Date, Product
DProduct, Date, Sales
Step-by-Step Solution
Solution:
  1. Step 1: Understand Table.ReorderColumns

    This function changes the column order to the list provided.
  2. Step 2: Apply given order

    The list is {"Date", "Product", "Sales"}, so columns reorder exactly in that sequence.
  3. Final Answer:

    Date, Product, Sales -> Option A
  4. Quick Check:

    ReorderColumns sets column order as listed [OK]
Quick Trick: ReorderColumns sets columns exactly as listed [OK]
Common Mistakes:
  • Assuming original order stays
  • Mixing column names order
  • Ignoring the reorder list

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Power BI Quizzes