Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
The current statement for the change arrow is functioning correctly, with the exception of the color not changing to red when the arrow indicates a downward change (i.e. a negative number). Can someone help see what I did wrong? Thank you
Change Arrow= IF( [Preceding Week Change] >=0 , UNICHAR(9650), UNICHAR(9660) )
Not sure if it's because the callout value for 'Change Arrow' is set to green which is why it's not changing to red?
Solved! Go to Solution.
Hi @kimdiep503
The unichar function just returns an icon.
For the color you can use Similar dax :
Change Arrow= IF( [Preceding Week Change] >=0 ,"GREEN", "RED" )
* The color can be the word / hexa code
and then modify it from conditional formatting
Result :
Pbix with example is attached
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly.
Hi @kimdiep503
The unichar function just returns an icon.
For the color you can use Similar dax :
Change Arrow= IF( [Preceding Week Change] >=0 ,"GREEN", "RED" )
* The color can be the word / hexa code
and then modify it from conditional formatting
Result :
Pbix with example is attached
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly.
User | Count |
---|---|
81 | |
75 | |
70 | |
42 | |
36 |
User | Count |
---|---|
114 | |
56 | |
52 | |
43 | |
42 |