0
0
Power BIbi_tool~10 mins

Report-level filters in Power BI - Cell-by-Cell Formula Trace

Choose your learning style9 modes available
Sample Data

Sales data by region for a company.

CellValue
A1Region
B1Sales
A2North
B21000
A3South
B31500
A4East
B41200
A5West
B51300
Formula Trace
CALCULATE(SUM(Sales), Region = "North")
Step 1: SUM(Sales)
Step 2: Region = "North" filter applied
Step 3: SUM(Sales) with filter Region = "North"
Cell Reference Map
    A       B
1 |Region | Sales |
2 | North | 1000  |
3 | South | 1500  |
4 | East  | 1200  |
5 | West  | 1300  |

Filter applied on column A (Region) for value 'North'
The formula filters the data to only include rows where Region is 'North' before summing Sales.
Result
    A       B
1 |Region | Sales |
2 | North | 1000  |

Result cell shows: 1000
The final result shows total sales for the North region only, which is 1000.
Sheet Trace Quiz - 3 Questions
Test your understanding
What does the filter 'Region = "North"' do in the formula?
AIt sums all sales regardless of region
BIt limits the data to only rows where Region is North
CIt excludes the North region from the sum
DIt multiplies sales by North
Key Result
CALCULATE with filter applies condition first, then aggregates filtered data.