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] )
parry2k
6 years agoSuper User
Anonymous you can add a measure with static line value you want
Static Line = 100
I would 💖 Kudos 🙂 if my solution helped. If you can spend time posting the question, you can also make efforts to give Kudos whoever helped to solve your problem. It is a token of appreciation!
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-msft6 years agoCommunity Support
Hi Anonymous ,
We can create a measure like that to work on it.
LINE = IF ( MAX ( yourtable[country] ) = "Italy", 100, [measure] )