Forum Discussion
Anonymous
6 years agoNot applicable
Dynamically Style/Fade Out Current Month Axis
I am showing real time data in charts (lines and bar charts). The current months' data is not final yet, so I would like to indicate that somehow, for example by fading that out. So in the chart belo...
- 6 years ago
I did it like below (see PBIX attachment)
Measure1 = IF(MAX([Column1])>[MaxDate],BLANK(),SUM('Table'[Column2])) Measure2 = IF(MAX([Column1])>EOMONTH([MaxDate],-1),SUM('Table'[Column2]),BLANK())
Greg_Deckler
6 years agoCommunity Champion
I did it like below (see PBIX attachment)
Measure1 = IF(MAX([Column1])>[MaxDate],BLANK(),SUM('Table'[Column2]))
Measure2 = IF(MAX([Column1])>EOMONTH([MaxDate],-1),SUM('Table'[Column2]),BLANK())