Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
kimdiep503
Frequent Visitor

Change Arrow Assistance

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?

kimdiep503_0-1719592240734.png

 

1 ACCEPTED SOLUTION
Ritaf1983
Super User
Super User

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

Ritaf1983_0-1719636749354.png

Result :

Ritaf1983_1-1719636797898.pngRitaf1983_2-1719636814092.png

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.

Regards,
Rita Fainshtein | Microsoft MVP
https://www.linkedin.com/in/rita-fainshtein/
Blog : https://www.madeiradata.com/profile/ritaf/profile

View solution in original post

1 REPLY 1
Ritaf1983
Super User
Super User

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

Ritaf1983_0-1719636749354.png

Result :

Ritaf1983_1-1719636797898.pngRitaf1983_2-1719636814092.png

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.

Regards,
Rita Fainshtein | Microsoft MVP
https://www.linkedin.com/in/rita-fainshtein/
Blog : https://www.madeiradata.com/profile/ritaf/profile

Helpful resources

Announcements
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.