Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi,
I would like to set up my pbix to refresh the data only of current and last year. I have static data since 2014 to 2017.
I not sure if the incremental refresh is the better way or perphaps i need to create to querys one static and other that refresh and then merge both.
The botton line is get faster refreshing time.
Solved! Go to Solution.
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
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 55 | |
| 48 | |
| 38 | |
| 16 | |
| 15 |
| User | Count |
|---|---|
| 85 | |
| 70 | |
| 38 | |
| 28 | |
| 25 |