0
0
Power BIbi_tool~10 mins

Incremental refresh in Power BI - Cell-by-Cell Formula Trace

Choose your learning style9 modes available
Sample Data

Sales data by date for a week. This data is used to demonstrate incremental refresh filtering by date.

CellValue
A1Date
B1Sales
A22023-01-01
B2100
A32023-01-02
B3150
A42023-01-03
B4200
A52023-01-04
B5130
A62023-01-05
B6170
Formula Trace
FILTER('Sales', 'Sales'[Date] >= DATE(2023,1,3) && 'Sales'[Date] <= DATE(2023,1,5))
Step 1: DATE(2023,1,3)
Step 2: DATE(2023,1,5)
Step 3: 'Sales'[Date] >= DATE(2023,1,3)
Step 4: 'Sales'[Date] <= DATE(2023,1,5)
Step 5: ('Sales'[Date] >= DATE(2023,1,3)) && ('Sales'[Date] <= DATE(2023,1,5))
Step 6: FILTER rows where condition is TRUE
Cell Reference Map
    A          B
1 | Date     | Sales  |
2 |2023-01-01|  100   |
3 |2023-01-02|  150   |
4 |2023-01-03|  200   | <-- Included
5 |2023-01-04|  130   | <-- Included
6 |2023-01-05|  170   | <-- Included
The formula references the 'Date' column from the Sales table to filter rows between 2023-01-03 and 2023-01-05.
Result
    A          B
4 |2023-01-03|  200   |
5 |2023-01-04|  130   |
6 |2023-01-05|  170   |
The filtered table shows only sales data for dates from January 3 to January 5, which is the incremental refresh range.
Sheet Trace Quiz - 3 Questions
Test your understanding
Which dates are included after applying the incremental refresh filter?
A2023-01-03, 2023-01-04, 2023-01-05
B2023-01-01, 2023-01-02
C2023-01-01 to 2023-01-05 all dates
DOnly 2023-01-05
Key Result
FILTER(table, table[column] >= start_date && table[column] <= end_date) filters rows by date range for incremental refresh.