0
0
Power BIbi_tool~10 mins

Calculated tables in Power BI - Cell-by-Cell Formula Trace

Choose your learning style9 modes available
Sample Data

This table lists products with their IDs, names, and categories.

CellValue
A1ProductID
B1ProductName
C1Category
A21
B2Apple
C2Fruit
A32
B3Carrot
C3Vegetable
A43
B4Banana
C4Fruit
A54
B5Broccoli
C5Vegetable
Formula Trace
FILTER(Products, Products[Category] = "Fruit")
Step 1: Products[Category]
Step 2: Products[Category] = "Fruit"
Step 3: FILTER(Products, [TRUE, FALSE, TRUE, FALSE])
Cell Reference Map
    A          B           C
1 ProductID ProductName  Category
2    1       Apple       Fruit  <-- included
3    2       Carrot     Vegetable
4    3       Banana      Fruit  <-- included
5    4       Broccoli   Vegetable
The formula filters rows based on the Category column values in column C.
Result
    A          B           C
1 ProductID ProductName  Category
2    1       Apple       Fruit
4    3       Banana      Fruit
The calculated table shows only products where Category is 'Fruit'.
Sheet Trace Quiz - 3 Questions
Test your understanding
What does the FILTER function do in this formula?
AKeeps only rows where Category is 'Fruit'
BDeletes rows where Category is 'Fruit'
CChanges all categories to 'Fruit'
DAdds a new column named 'Fruit'
Key Result
FILTER(table, condition) returns a table with rows where condition is TRUE