Forum Discussion
Plot showing 2-year evolution using year filter as reference date
- 5 years ago
You can create a disconnected table which contains all the years in a column. Then create below measures.
Selected Year = SELECTEDVALUE(Years[Year]) Flag = IF(SELECTEDVALUE('Date'[Year])<=[Selected Year]&&SELECTEDVALUE('Date'[Year])>=[Selected Year]-2,1,0)Put the Year column from Years table into a slicer for users to pick a year. Put the Flag measure into the visuals' filter pane as a visual-level filter and set show items when value is 1 and apply the filter. You need to have a column from Date table in the same visual to provide a context for the measure.
Attached a sample file for your reference.
Regards,
Community Support Team _ Jing
If this post helps, please Accept it as the solution to help other members find it.
Syndicate_Admin , if you select a small period range and want to display a bigger range it is better that you use an independent table
Need of an Independent Date Table:https://www.youtube.com/watch?v=44fGGmg9fHI