Forum Discussion
Refresh only current year data
- Anonymous7 years ago
Needs to be incremental refresh. The other way you described will still force both queries to refresh.
You can create a calculated table in DAX using the following syntax:
IncrementalTable = UNION( StaticTable, RefreshingTable )This will require that both tables have the same columns names and are in the same order.
This will also double the size of your model. You'll only build your measures off of the new calculated table, but you need the other loaded into the model to build it.
If you have already paid for PowerBI Premium, use incremental refresh.
Or try to build the tables using Dataflows (again, a premium feature), and set up incremental refresh there.
Best,~ Chris
Needs to be incremental refresh. The other way you described will still force both queries to refresh.
You can create a calculated table in DAX using the following syntax:
IncrementalTable =
UNION(
StaticTable,
RefreshingTable
)This will require that both tables have the same columns names and are in the same order.
This will also double the size of your model. You'll only build your measures off of the new calculated table, but you need the other loaded into the model to build it.
If you have already paid for PowerBI Premium, use incremental refresh.
Or try to build the tables using Dataflows (again, a premium feature), and set up incremental refresh there.
Best,
~ Chris