Forum Discussion
Anonymous
8 years agoNot applicable
Line Chart: Conditional Formatting
Hi All, Im quite new to Power BI. Is there a way to use condtional formatting on a line chart... I have a line chart with 3 measures, 1 lower limit, 1 upper limit and 1 with the actual measu...
- 8 years ago
Hi Anonymous,
Currently, this feature is not supported in Power BI Desktop, you could vote this idea which has been submitted in Power BI ideas forum.
For the workaround, I have made a test that you could create two measures to get the result below.
sales1 = IF(SUM(Test[Sales])>40,BLANK(),SUM(Test[Sales]))
sales2 = IF(SUM(Test[Sales])>40,SUM(Test[Sales]),BLANK())
The line chart shows red which sales >40 and black which sales<=40.
Best Regards,
Cherry
Anonymous
6 years agoNot applicable
Sorry for late
let me join this discussion, I know I'm too late but, got the right solution for future reference.
Please check out this blog.
https://exceleratorbi.com.au/line-chart-conditional-formatting/
Thanks
Anonymous
5 years agoNot applicable
Interesting solution !
Do you think that this can be adapted to change the line color point by point ? (instead of the entire line ?)