Forum Discussion
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?
Hi Anonymous ,
We can create a measure like that to work on it.
LINE = IF ( MAX ( yourtable[country] ) = "Italy", 100, [measure] )
3 Replies
- parry2kSuper User
Anonymous you can add a measure with static line value you want
Static Line = 100I 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!
- AnonymousNot 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-msftCommunity Support
Hi Anonymous ,
We can create a measure like that to work on it.
LINE = IF ( MAX ( yourtable[country] ) = "Italy", 100, [measure] )