Forum Discussion
Tracking Daily Revenue Delta Between Static and Dynamic Tables in Power BI
- 1 year ago
Hi Anonymous -You need a way to persist data so that vw__sales_baseline remains unchanged Monday-Saturday and updates only on Sunday.
Steps:
Create a Storage Table:Use an external database (Databricks, SQL Server, or SharePoint List) to store the vw__sales_baseline snapshot each Sunday.
Modify Your Power Query to Read from This Storage Table:Load vw__sales_baseline only if today is not Sunday (i.e., Monday-Saturday).
Refresh vw__sales_baseline on Sunday and store the latest data.If you have access to an external database (SQL, Databricks, SharePoint List).
Hope this helps.
Hi Anonymous -You need a way to persist data so that vw__sales_baseline remains unchanged Monday-Saturday and updates only on Sunday.
Steps:
Create a Storage Table:
Use an external database (Databricks, SQL Server, or SharePoint List) to store the vw__sales_baseline snapshot each Sunday.
Modify Your Power Query to Read from This Storage Table:
Load vw__sales_baseline only if today is not Sunday (i.e., Monday-Saturday).
Refresh vw__sales_baseline on Sunday and store the latest data.
If you have access to an external database (SQL, Databricks, SharePoint List).
Hope this helps.