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

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
MortenR
Regular Visitor

KPI Status using KPI Matrix

Hi,

 

How do I add a green/yellow/red indication arrow on my KPI Matrix visual under the KPI Status-column in Power BI. I would like to see both the %-deviation and the arrow in the same column.

 

I have been watching various guides on how to do this the last 2-3 hours but find myself unable to understand these.

 

image.png

1 ACCEPTED SOLUTION
leed
Advocate II
Advocate II

Hi @MortenR 

Measure 1 for the icon :

M_Magento_AverageOrderValue_YoY% =
DIVIDE ( [M_Magento_AverageOrderValue] - [M_Magento_AverageOrderValue_LY], [M_Magento_AverageOrderValue_LY] )

 

Measure 2 for the %+/- : 

M_Magento_AverageOrderValue YoY KPI =
IF (
NOT ISBLANK ( [M_Magento_AverageOrderValue_YoY%] ),
(
IF (
[M_Magento_AverageOrderValue_YoY%] < 0,
FORMAT ( [M_Magento_AverageOrderValue_YoY%], "Percent" ) & " "
& UNICHAR ( 129055 ),
"+" & FORMAT ( [M_Magento_AverageOrderValue_YoY%], "Percent" ) & " "
& UNICHAR ( 129053 )
)
),
BLANK ()
)
 
in the visual, add the Measure 2 by conditional formating by Rules based on field Measure 1:

image.png

Best,

DA

View solution in original post

1 REPLY 1
leed
Advocate II
Advocate II

Hi @MortenR 

Measure 1 for the icon :

M_Magento_AverageOrderValue_YoY% =
DIVIDE ( [M_Magento_AverageOrderValue] - [M_Magento_AverageOrderValue_LY], [M_Magento_AverageOrderValue_LY] )

 

Measure 2 for the %+/- : 

M_Magento_AverageOrderValue YoY KPI =
IF (
NOT ISBLANK ( [M_Magento_AverageOrderValue_YoY%] ),
(
IF (
[M_Magento_AverageOrderValue_YoY%] < 0,
FORMAT ( [M_Magento_AverageOrderValue_YoY%], "Percent" ) & " "
& UNICHAR ( 129055 ),
"+" & FORMAT ( [M_Magento_AverageOrderValue_YoY%], "Percent" ) & " "
& UNICHAR ( 129053 )
)
),
BLANK ()
)
 
in the visual, add the Measure 2 by conditional formating by Rules based on field Measure 1:

image.png

Best,

DA

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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