Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
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.
Solved! Go to Solution.
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
Proud to be a Datanaut!
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
Proud to be a Datanaut!
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 16 | |
| 12 | |
| 9 | |
| 7 | |
| 6 |