Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hello Experts,
I would like to show indicators in my TILES.
I was trying to use UNICHAR ( 128317 ) as red colored arrow - works in PBI Desktop but not in Power BI Service.
PBI Desktop - works (image 1) , PBI Service - does not work (image 2)
I am using a measure like this to achieve this result.
Total PLV %change arrow = 
SWITCH (
    TRUE ();
    ISBLANK ( [Total PLV YOY YTD] ); "";
    ISBLANK ( [Total PLV YTD LY] ); "";
    [Total PLV YOY YTD] <= 0; "";
    [Total PLV YOY YTD] >= [Total PLV YTD LY]; UNICHAR ( 9650 );
    [Total PLV YOY YTD] <= [Total PLV YTD LY];  UNICHAR ( 9660 ) ;
    BLANK ()
)
What would you recomend to me? I would like to just avoid installing custom visuals.
Thanks,
Martin-Prague
You may try using conditional formatting instead.
https://docs.microsoft.com/en-us/power-bi/desktop-conditional-table-formatting
@v-chuncz-msft Conditional formatting does not work for MEASURES in my case.
And due to company constrains I cannot use higher version than 2.54 of PBI currently, maybe it is comming.
Anyways I would like to use arrows pointing up/down.
Any other suggestion?
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.