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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
akhaliq7
Post Prodigy
Post Prodigy

Using the date filter in power query dynamically

In power query i have loaded my fact table the next step i want is to filter the rows by a date column but wanted a solution to returning rows based on the past 2 years, this year and the next 5 years but as dynamic as possible don't want to hardcode the values as the report will need to be updated every year.

 

The only solution I discovered currently was you can only give 2 rules for dynamic date filtering. 

1 ACCEPTED SOLUTION
BA_Pete
Super User
Super User

Hi @akhaliq7 ,

 

Your filter step would look something like this:

=Table.SelectRows(
  previousStepName,
  each [Date] >= Date.StartOfYear(Date.AddYears(Date.From(DateTime.LocalNow()), -2))
    and [Date] <= Date.EndOfYear(Date.AddYears(Date.From(DateTime.LocalNow()), 5))
)

 

Pete



Now accepting Kudos! If my post helped you, why not give it a thumbs-up?

Proud to be a Datanaut!




View solution in original post

1 REPLY 1
BA_Pete
Super User
Super User

Hi @akhaliq7 ,

 

Your filter step would look something like this:

=Table.SelectRows(
  previousStepName,
  each [Date] >= Date.StartOfYear(Date.AddYears(Date.From(DateTime.LocalNow()), -2))
    and [Date] <= Date.EndOfYear(Date.AddYears(Date.From(DateTime.LocalNow()), 5))
)

 

Pete



Now accepting Kudos! If my post helped you, why not give it a thumbs-up?

Proud to be a Datanaut!




Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!

December 2025 Power BI Update Carousel

Power BI Monthly Update - December 2025

Check out the December 2025 Power BI Holiday Recap!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors