0
0
Power BIbi_tool~10 mins

Scheduled data refresh in Power BI - Cell-by-Cell Formula Trace

Choose your learning style9 modes available
Sample Data

Sales data by date that needs to be refreshed daily to keep reports updated.

CellValue
A1Date
B1Sales
A22024-06-01
B2100
A32024-06-02
B3150
A42024-06-03
B4200
Formula Trace
REFRESH(DATASET)
Step 1: Check last refresh time
Step 2: Compare current time with schedule
Step 3: Trigger data refresh
Step 4: Load new data from source
Step 5: Update dataset in Power BI service
Step 6: Refresh complete
Cell Reference Map
  A       B  
+----+--------+
|Date| Sales  |
+----+--------+
|2024-06-01|  100   |
|2024-06-02|  150   |
|2024-06-03|  200   |
+----+--------+

Arrows: Data source -> Dataset -> Report
The sales data in columns A and B is the source data that gets refreshed in the dataset.
Result
  A       B  
+------------+--------+
|Date       | Sales  |
+------------+--------+
|2024-06-01 |  100   |
|2024-06-02 |  150   |
|2024-06-03 |  200   |
|2024-06-04 |  180   |  <-- New data after refresh
+------------+--------+
After scheduled refresh, the new sales data for 2024-06-04 appears in the dataset, updating the report.
Sheet Trace Quiz - 3 Questions
Test your understanding
What triggers the scheduled data refresh in Power BI?
AUser manually clicks refresh
BThe current time matches the scheduled refresh time
CData source sends a notification
DPower BI desktop is opened
Key Result
Scheduled refresh triggers data reload at set times to update datasets automatically.