0
0
Power BIbi_tool~5 mins

CALCULATE with multiple filters in Power BI - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
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?
ATo import data
BTo create new tables
CTo format numbers
DTo change filter context and recalculate expressions
How do you add multiple filters inside CALCULATE?
ASeparate filters with commas
BUse plus signs (+)
CPut filters inside square brackets
DUse semicolons
What result do you get if filters exclude all data in CALCULATE?
ABlank or zero
BError message
CSum of all data
DOriginal unfiltered result
Which of these is a valid CALCULATE syntax with multiple filters?
ACALCULATE(SUM(Sales[Amount]) Sales[Region] = "East" Sales[Category] = "Bike")
BCALCULATE(SUM(Sales[Amount]); Sales[Region] = "East"; Sales[Category] = "Bike")
CCALCULATE(SUM(Sales[Amount]), Sales[Region] = "East", Sales[Category] = "Bike")
DCALCULATE(SUM(Sales[Amount]) + Sales[Region] = "East" + Sales[Category] = "Bike")
Can you use the FILTER() function inside CALCULATE filters?
AOnly with one filter
BYes, for complex filter logic
CNo, FILTER() is not allowed
DOnly outside CALCULATE
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.