Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

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?

  • v-yingjl's avatar
    v-yingjl
    4 years ago

    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_R's avatar
    P_R
    Frequent Visitor

    Can you please add more information, screenshot and maybe a mockup of your desired output? 

    • Anonymous's avatar
      Anonymous
      Not 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's avatar
        v-yingjl
        Icon for Community Support rankCommunity 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.