Forum Discussion
Hydro
8 years agoFrequent Visitor
How to conditional formatting a bar chart on x Axis
Dear community, i try to create a bar chart with a conditional formatting. I wannt all bars which are below 0,8 to be red and all which are above 1.4 to be red as well. In a future state i want to h...
- 8 years ago
Hi Hydro,
Based on my test, we can add a new column to meet your requirement.
Column = IF(Table1[bar]>1.4,"C",IF(Table1[bar]<0.8,"C","D"))
Then we can create the bar chart as the picture below.
For more details, please check the pbix as attached.
Regards,
Frank
v-frfei-msft
Community Support
8 years agoHi Hydro,
Based on my test, we can add a new column to meet your requirement.
Column = IF(Table1[bar]>1.4,"C",IF(Table1[bar]<0.8,"C","D"))
Then we can create the bar chart as the picture below.
For more details, please check the pbix as attached.
Regards,
Frank
- v-frfei-msft8 years ago
Community Support
Hi Hydro,
Does that make sense? If so , kindly mark the answer as a solution to close the case, thanks in advance.
Regards,
Frank
- Hydro8 years agoFrequent Visitor
Hi,
Thanks, thas was easy :-)