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
amal_01
Helper I
Helper I

how can use measures for comperision in conditional formatting using power bi

I made two measures to find the sales amount for this day and the previous day. Now, I want to make a comparison between the amounts. I want to use an up arrow icon and a down arrow icon to show me which value is higher than the other.


amal_01_0-1732101201085.png



I mean like this 

amal_01_1-1732101289999.png



I tried to use conditional formatting, but it is difficult to add a measure for comparison."

what sould i do ?
 
1 ACCEPTED SOLUTION
KNP
Super User
Super User

Hi @amal_01,

 

I'm not sure what your measures are called but hopefully the below generic example will help.

 

Conditional measure...

 

__SalesIcon = 
    SWITCH(
        TRUE()
        , [Sales] > [Sales SPLY], "TriangleHigh"
        , "TriangleLow"
    )

 

You can see the icon names in this article.

https://radacad.com/power-bi-icon-names-for-conditional-formatting-using-dax

 

Apply this to the cell elements...

 

KNP_0-1732126121571.png

 

Here the field settings are applied using the measure...

KNP_1-1732126189193.png

 

I hope this helps.

 

 

Have I solved your problem?
Please click Accept as Solution so I don't keep coming back to this post, oh yeah, others may find it useful also ;).
xOIEmaj

If you found this post helpful, please give Kudos.
It gives me a sense of instant gratification and, if you give me Kudos enough times, magical unicorns will appear on your screen.
If you find my signature vaguely amusing, please give Kudos.
image
fabric-SUbadge
Proud to be a Super User!

View solution in original post

1 REPLY 1
KNP
Super User
Super User

Hi @amal_01,

 

I'm not sure what your measures are called but hopefully the below generic example will help.

 

Conditional measure...

 

__SalesIcon = 
    SWITCH(
        TRUE()
        , [Sales] > [Sales SPLY], "TriangleHigh"
        , "TriangleLow"
    )

 

You can see the icon names in this article.

https://radacad.com/power-bi-icon-names-for-conditional-formatting-using-dax

 

Apply this to the cell elements...

 

KNP_0-1732126121571.png

 

Here the field settings are applied using the measure...

KNP_1-1732126189193.png

 

I hope this helps.

 

 

Have I solved your problem?
Please click Accept as Solution so I don't keep coming back to this post, oh yeah, others may find it useful also ;).
xOIEmaj

If you found this post helpful, please give Kudos.
It gives me a sense of instant gratification and, if you give me Kudos enough times, magical unicorns will appear on your screen.
If you find my signature vaguely amusing, please give Kudos.
image
fabric-SUbadge
Proud to be a Super User!

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.

Top Solution Authors