Forum Discussion
ArchStanton
Power Participant
2 years agoLine & 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.
ArchStanton
Power Participant
2 years agoThanks! this works which is great 😊
Ashish_Mathur
Super User
2 years agoYou are welcome.