Forum Discussion
Anonymous
6 years agoNot applicable
Static Line Chart
Hello Guys In the graph below there is a static line where I can compare "Italy" against other countries by selecting in the dropbox. Anyone knows how to do it?
- 6 years ago
Hi Anonymous ,
We can create a measure like that to work on it.
LINE = IF ( MAX ( yourtable[country] ) = "Italy", 100, [measure] )
Anonymous
6 years agoNot applicable
Hello
Thanks for your help
For this line chart, there are different values across the months where each individual month has its own value. Is there a kind of Dax formula that isolates "Italy" making it statistic and other lines not?
See the dashboard below
v-frfei-msft
6 years agoCommunity Support
Hi Anonymous ,
We can create a measure like that to work on it.
LINE =
IF ( MAX ( yourtable[country] ) = "Italy", 100, [measure] )