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.
Hi All,
I want to create a new column in my Matrix table called "Indicator" to show arrow indicator (arrow up - green, arrow down - red).
Using the example below, I want to show green if Growth% is greater than Total then Arrow Up, else Arrow Down.
Malaysia : Arrow Down (146% < 168%)
Malaysia - A : Arrow Up (178% > 168%)
I can set the icon for C, D, A, B but not able to set icons for Indonesia and Malaysia row.
Update
Hi, I can set the icon for Indonesia and Malaysia but not able to set the color for the icons.
Regards,
BK
Solved! Go to Solution.
Hi @Anonymous
You can use a measure that returns UNICHAR, but you lose the colours, another option is to use emojis.
arrows =
IF(
[Sales CY vs LY %] > CALCULATE( [Sales CY vs LY %], ALL( 'Product' ) ),
UNICHAR( 129153 ),
UNICHAR( 129155 )
)
Hi @Anonymous
You can use a measure that returns UNICHAR, but you lose the colours, another option is to use emojis.
arrows =
IF(
[Sales CY vs LY %] > CALCULATE( [Sales CY vs LY %], ALL( 'Product' ) ),
UNICHAR( 129153 ),
UNICHAR( 129155 )
)
Hi @Anonymous ,
I'm assuming that the Growth % is a measure if yes you can do a measure similar to this:
ARROWINDICATOR =
SWITCH (
TRUE ();
[Growht%] > 1,46
&& [Growht%] < 1,68; UNICODE ( "U+25BC" );
[Growht%] > 1,68
&& [Growht%] < 1,78; UNICODE ( "U+25B2" )
)
Be aware that this only give black arrows then you can use condittional formatting to make the colouring.
Check the documentation on how to achieve this:
https://docs.microsoft.com/en-us/power-bi/desktop-conditional-table-formatting
you can also use icons
https://docs.microsoft.com/en-us/power-bi/desktop-conditional-table-formatting#add-icons
However be aware that
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsIn the matrix, you have a show icon. Refer for details:https://powerbi.tips/2019/07/icons-upon-icons/
"Click on the Advanced Controls to set the properties of the icons based on the data properties. This type of dialog box should look familiar as it is similar to the previous boxes for conditional formatting. Opening this window shows Icons for each Rule in the list. To adjust an icon Click on the Drop Down Arrow next to the icon you wish to change. There are multiple icons to choose from."
Hi, I can set icons for C, D, A, B but not able to set for Malaysia and Indonesia row. This is currently what I have now.
User | Count |
---|---|
97 | |
78 | |
77 | |
48 | |
26 |