Recall & Review
beginner
What does the CALCULATE function do in Power BI?
CALCULATE changes the context in which a calculation is performed by applying one or more filters to modify the data used in the calculation.
Click to reveal answer
beginner
How do you apply multiple filters inside a CALCULATE function?
You list multiple filter expressions separated by commas inside CALCULATE, like CALCULATE(<expression>, Filter1, Filter2). Each filter narrows down the data further.
Click to reveal answer
intermediate
What happens if one of the filters in CALCULATE excludes all data?
The result will be blank or zero because no data meets all filter conditions simultaneously.
Click to reveal answer
beginner
Write a simple example of CALCULATE with two filters to sum sales where Region is 'West' and Product is 'Bike'.
CALCULATE(SUM(Sales[Amount]), Sales[Region] = "West", Sales[Product] = "Bike")
Click to reveal answer
intermediate
Can CALCULATE accept filter functions like FILTER() as its filters?
Yes, CALCULATE can use filter functions like FILTER() to apply complex filter logic inside its filter arguments.
Click to reveal answer
What is the purpose of CALCULATE in Power BI?
✗ Incorrect
CALCULATE changes the filter context and recalculates the expression accordingly.
How do you add multiple filters inside CALCULATE?
✗ Incorrect
Multiple filters are separated by commas inside CALCULATE.
What result do you get if filters exclude all data in CALCULATE?
✗ Incorrect
If no data meets the filters, the result is blank or zero.
Which of these is a valid CALCULATE syntax with multiple filters?
✗ Incorrect
Filters inside CALCULATE must be separated by commas.
Can you use the FILTER() function inside CALCULATE filters?
✗ Incorrect
FILTER() can be used inside CALCULATE to apply complex filters.
Explain how CALCULATE works when you add multiple filters. What happens to the data?
Think about how each filter limits the data step by step.
You got /4 concepts.
Write an example of a CALCULATE formula with two filters and explain each part.
Use a simple example like sales filtered by region and product.
You got /4 concepts.