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

Data Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more

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
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

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

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.