0
0
Power BIbi_tool~20 mins

Header promotion in Power BI - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Header Promotion Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
1:30remaining
What does header promotion do in Power Query?

In Power Query, what is the main effect of using the 'Use First Row as Headers' feature?

AIt sorts the data based on the first row values.
BIt deletes the first row of data permanently.
CIt duplicates the first row and adds it as a new column.
DIt converts the first row of data into column headers.
Attempts:
2 left
💡 Hint

Think about how the table's columns get their names.

dax_lod_result
intermediate
2:00remaining
DAX measure after header promotion

After promoting headers in Power Query, you load a table named 'SalesData' with columns: 'Product', 'Region', and 'Sales'. You create this DAX measure:

Total Sales = SUM(SalesData[Sales])

What will be the result of Total Sales if the 'Sales' column contains values 100, 200, and 300?

AError: Column 'Sales' not found
B600
C0
D100
Attempts:
2 left
💡 Hint

Check if the column name matches exactly after header promotion.

🔧 Formula Fix
advanced
2:00remaining
Why does this header promotion step fail?

You have a table where the first row contains mixed data types. You apply 'Use First Row as Headers' but get an error. What is the most likely cause?

AThe first row has duplicate values causing invalid column names.
BThe first row contains null values which cannot be headers.
CThe table has more than 1000 rows, which is unsupported.
DThe data source is not connected.
Attempts:
2 left
💡 Hint

Headers must be unique and valid.

visualization
advanced
2:00remaining
Best visualization after header promotion

You have promoted headers in a sales dataset with columns: 'Date', 'Product', 'Quantity', and 'Revenue'. Which visualization best shows total revenue by product?

ABar chart with 'Product' on X-axis and sum of 'Revenue' on Y-axis.
BLine chart with 'Date' on X-axis and 'Quantity' on Y-axis.
CScatter plot with 'Quantity' on X-axis and 'Date' on Y-axis.
DPie chart showing count of 'Product' entries.
Attempts:
2 left
💡 Hint

Think about comparing totals by category.

data_modeling
expert
2:30remaining
Impact of header promotion on data model relationships

You import two tables: 'Orders' and 'Customers'. 'Orders' has a first row with customer IDs but no headers. You promote headers in 'Orders' and the customer ID column is named 'CustomerID'. 'Customers' already has a 'CustomerID' column. What is the impact on creating a relationship between these tables?

AYou cannot create a relationship because promoted headers are not recognized in the model.
BRelationships are created automatically regardless of header names.
CYou can create a relationship on 'CustomerID' because headers match after promotion.
DYou must rename columns manually after promotion to create relationships.
Attempts:
2 left
💡 Hint

Headers define column names used in relationships.