Forum Discussion
ArchStanton
2 years agoPower Participant
Line & Bar Chart
Hi, I want to stop the future Cumulative line values from appearing from the line below, I only have Apr so I dont want to see future months. The code for the line is: DD YTD Cases = CAL...
- 2 years ago
Hi,
Assuming the Month names on the X-axis have been dragged from the Date2 table, write this measure
Measure = if(min('Date2'[Date])>today(),blank(),[DD YTD cases])
Hope this helps.
Ashish_Mathur
2 years agoSuper User
Hi,
Assuming the Month names on the X-axis have been dragged from the Date2 table, write this measure
Measure = if(min('Date2'[Date])>today(),blank(),[DD YTD cases])
Hope this helps.
- ArchStanton2 years agoPower Participant
Thanks! this works which is great 😊
- Ashish_Mathur2 years agoSuper User
You are welcome.