Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

Triangle icon in card visualization

Hi,    I have a single data point which I have visualized in card visualization as in picture. Besides the value, I want to have a red or green triangle icon based on a condition. I can create a me...
  • v-frfei-msft's avatar
    6 years ago

    Hi Anonymous ,

     

    We can use UNICHAR to work on it. Here I have created a measure as below.

    Measure 4 = IF(SUM('Table'[value])>10,UNICHAR(9650),UNICHAR(128315))

     

    By default, the arrow is black rather than green as we required. There is no green up arrow in Unicode so we’ll need to change the font color of the arrow in Power BI to green.

     

    For more details, please check the pbix as attached.