Forum Discussion
Highlighted symbol
Hello,
I have a field with 1 & 0. Where need to seggregate 1 as Enabled and 0 for Disabled.
If I select Enabled then one green highlighted symbol will pop up and if I select Disabled then one red highlighted symbol will pop up.
Can anyone suggest me how to do that?
Hi Anonymous ,
You can create a measure like this and apply conditional format to the value field:
Color = IF(SELECTEDVALUE('Table'[Tag]) = TRUE(),"green","red")Best Regards,
Community Support Team _ Yingjie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
3 Replies
- P_RFrequent Visitor
Can you please add more information, screenshot and maybe a mockup of your desired output?
- AnonymousNot applicable
P_R ,
Basically, I have one column based on true and false. If the value is true then I need to highlight that value with Green symbol if false then Red in the dashboard. Due to security issue I am not allowed to paste the data here.- v-yingjl
Community Support
Hi Anonymous ,
You can create a measure like this and apply conditional format to the value field:
Color = IF(SELECTEDVALUE('Table'[Tag]) = TRUE(),"green","red")Best Regards,
Community Support Team _ Yingjie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.