Forum Discussion
Refreshing just one column.
- 1 year ago
Hi mwm39 ,
Thanks for your clarification. Incremental refresh will not work here since the files are being replaced, not appended. Incremental refresh requires additive rows with a stable date column.(docs).Try These Workarounds :
Archive each weekly file with a timestamp (e.g., via Power Automate) so history is preserved.
Use a self referencing merge in Power Query to retain past data while refreshing only the current week.
Store data in a staging location (SQL/SharePoint/Dataverse) that accumulates weekly snapshots for Power BI.
Microsoft Docs :
Incremental refresh in Power BI
Power BI always reloads everything → you can’t refresh only one column.
How to Fixes:
Reshape to long format (Cost Center | Week | Value) → enable Incremental Refresh so only recent weeks update.
Keep two tables → one frozen (old weeks, refresh off) + one live (latest weeks, refresh on) → then append.
Archive weekly CSVs in separate files/folders → append all to preserve history.
Best option: reshape to long format + use Incremental Refresh.