Forum Discussion
need help on conditional formatting
- 4 years ago
Hi Anonymous ,
Conditional formatting of bolded text is not currently supported, please submit your ideas here.
https://ideas.powerbi.com/ideas/
Best Regards,
Winniz
Hi Anonymous ,
If your months are columns in the table, then you have to create separate measures for each month. Take January as an example.
Jan_Color =
IF (
SELECTEDVALUE ( 'CORP KPIs 1'[ID] ) = "CAPA aging",
IF ( SUM ( 'CORP KPIs 1'[Jan] ) <= 225, "Green", "Red" )
)
If you want to do this in a measure, then you need to unpivot these month columns in Power Query and then create the measure.
color =
IF (
SELECTEDVALUE ( 'CORP KPIs 2'[ID] ) = "CAPA aging",
IF ( SELECTEDVALUE ( 'CORP KPIs 2'[Value] ) <= 225, "Green", "Red" )
)
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi V,
Thank you for reply this.
Do you know if there is a way to bold a single column?
- v-kkf-msft4 years agoCommunity Support
Hi Anonymous ,
Conditional formatting of bolded text is not currently supported, please submit your ideas here.
https://ideas.powerbi.com/ideas/
Best Regards,
Winniz