Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
danielpenafiel
Frequent Visitor

Refresh only current year data

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.

1 ACCEPTED SOLUTION
Anonymous
Not applicable

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

View solution in original post

1 REPLY 1
Anonymous
Not applicable

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

Helpful resources

Announcements
Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.