0
0
Power BIbi_tool~20 mins

Calculated columns vs measures in Power BI - Practice Questions

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Calculated Columns vs Measures Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Difference in Calculation Timing

When using Power BI, what is the main difference in when calculated columns and measures perform their calculations?

ACalculated columns compute values dynamically during report interaction; measures compute values during data refresh.
BBoth calculated columns and measures compute values only when the report is published.
CBoth calculated columns and measures compute values only during data refresh.
DCalculated columns compute values during data refresh; measures compute values dynamically during report interaction.
Attempts:
2 left
💡 Hint

Think about when the data is stored versus when it is calculated on the fly.

dax_lod_result
intermediate
2:00remaining
Measure Calculation with Filter Context

Given a Sales table with columns: Product, Quantity, and Price, and a measure defined as Total Sales = SUMX(Sales, Sales[Quantity] * Sales[Price]), what will be the result of Total Sales when a filter is applied to show only Product = 'A'?

ASum of Quantity * Price for all products, ignoring the filter.
BSum of Quantity * Price only for Product 'A'.
CSum of Quantity only for Product 'A', ignoring Price.
DSum of Price only for Product 'A', ignoring Quantity.
Attempts:
2 left
💡 Hint

Measures respect filters applied in the report visuals.

data_modeling
advanced
2:00remaining
Choosing Between Calculated Column and Measure

You want to create a new column that categorizes sales as 'High' if the total sales amount exceeds 1000, otherwise 'Low'. The categorization should be available for each row in the Sales table. Which option is best?

ACreate a calculated column with an IF statement checking if Quantity * Price > 1000.
BCreate a measure with an IF statement checking if SUM(Quantity * Price) > 1000.
CCreate a calculated column with an IF statement checking if SUM(Quantity * Price) > 1000.
DCreate a measure with an IF statement checking if Quantity * Price > 1000.
Attempts:
2 left
💡 Hint

Think about whether the categorization needs to be stored per row or calculated dynamically.

🔧 Formula Fix
advanced
2:00remaining
Why Does This Measure Return Unexpected Results?

Consider this measure:
Average Price = AVERAGE(Sales[Price])
When used in a report with Product filter, it returns the average price for all products, ignoring the filter. What is the likely cause?

AThe measure uses ALL() function inside, removing filters.
BThe measure is defined as a calculated column, not a measure.
CThe Price column has blank values causing errors.
DThe report visual does not support filtering.
Attempts:
2 left
💡 Hint

Check if the measure code includes functions that override filters.

visualization
expert
2:00remaining
Best Visualization for Comparing Calculated Column and Measure Results

You have a calculated column 'Profit Category' with values 'High', 'Medium', 'Low' per row, and a measure 'Total Profit' that sums profit dynamically. You want to show how total profit varies by profit category in a report. Which visualization is best?

APie chart showing count of rows per 'Profit Category'.
BTable visual showing 'Profit Category' and 'Total Profit' side by side.
CStacked bar chart with 'Profit Category' on axis and 'Total Profit' as values.
DLine chart showing 'Total Profit' over time.
Attempts:
2 left
💡 Hint

Think about how to compare categories with aggregated values visually.