Forum Discussion
artblakey
6 years agoHelper I
Create a yearly bar chart that does not filter
Hi all, I currently have multiple visuals that filter on a date-range Slicer. This works well, but, what I would like to do is to make a static bar chart that does not follow the filter rules fr...
- 6 years ago
artblakey , create a column current FY in your date table like
Start Of Year = STARTOFYEAR('Date'[Date],"9/30") End of Year = ENDOFYEAR('Date'[Date],"9/30") Current Year = if([Start Of Year] <=Today && [End of Year] >= Today() ,"Current Year", "Other Year")And select " Current Year " this at the visual level and stop interaction with any other date slicer on the page
amitchandak
6 years agoSuper User
artblakey , create a column current FY in your date table like
Start Of Year = STARTOFYEAR('Date'[Date],"9/30")
End of Year = ENDOFYEAR('Date'[Date],"9/30")
Current Year = if([Start Of Year] <=Today && [End of Year] >= Today() ,"Current Year", "Other Year")
And select " Current Year " this at the visual level and stop interaction with any other date slicer on the page
artblakey
6 years agoHelper I
Hi amitchandak
Thank you for your response. I had to add () after the first Today, but then it worked well.
Appreciate your help.