Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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?