Forum Discussion

ArchStanton's avatar
ArchStanton
Power Participant
2 years ago
Solved

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...
  • Ashish_Mathur's avatar
    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.