We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register 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!
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 5 | |
| 3 | |
| 3 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 11 | |
| 10 | |
| 7 | |
| 7 | |
| 6 |