Forum Discussion
need help with limiting date range
I have a dashboard with work orders that are scheduled, closed and a running total by fiscal year...a 10 year trend. How can I limit the trend to only show me scheduled work to current fiscal year and previous 10? Right now, it's showing scheduled work orders way out in the future. Is there a formula to show ONLY scheduled and closed for the last 10 fiscal years? Help needed!
- Anonymous2 years ago
Hi 72_tam ,
I created some data:
Here are the steps you can follow:
1. Create measure.
Flag = var _today=TODAY() return IF( MAX('Table'[Date].[Year])>=YEAR(_today)-10&& MAX('Table'[Date].[Year])<=YEAR(_today),1,0)2. Place [Flag]in Filters, set is=1, apply filter.
3. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
2 Replies
- 72_tamRegular Visitor
This is how I clculated running total
Running Total in FY = CALCULATE([Difference], FILTER(ALLSELECTED(Append1[Year]), ISONORAFTER([Year], MAX([Year]), DESC))) - AnonymousNot applicable
Hi 72_tam ,
I created some data:
Here are the steps you can follow:
1. Create measure.
Flag = var _today=TODAY() return IF( MAX('Table'[Date].[Year])>=YEAR(_today)-10&& MAX('Table'[Date].[Year])<=YEAR(_today),1,0)2. Place [Flag]in Filters, set is=1, apply filter.
3. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly