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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

How to give up down arrow for Measure in Power Bi comparing values

How to give up down arrow for Measure in Power Bi comparing values?

 

I have YTD and Previous Year YTD , I need to create a KPI visual which shows YTD and Previous year YTD also comapares them , based on comparison it will show up and  down arrow.

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Anonymous ,

 

I think you will add [YTD] in Indicator Field, add [Month] in "Trend axis" and [Previous Year YTD] in Target goals in KPI visual. As far as I know, KPI visual will show Red if [YTD]< [Previous Year YTD] and show green if [YTD]> [Previous Year YTD]. We couldn't add icons like arrow to show comparison result in KPI. Here I suggest you to create a card visual, set the background of card visual as None and Group two visuals.

Measure:

Arrow =
IF (
    [YTD] = [Previous Year YTD],
    "",
    IF ( [YTD] < [Previous Year YTD], UNICHAR ( 11015 ), UNICHAR ( 11014 ) )
)
Arrow color = 
IF([YTD]<[Previous Year YTD],"Red","Green")

Select [Arrow color] measure in Card Data label Color (fx) > Format Style - Field value.

Result is as below.

1.png

 

Best Regards,
Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @Anonymous ,

 

I think you will add [YTD] in Indicator Field, add [Month] in "Trend axis" and [Previous Year YTD] in Target goals in KPI visual. As far as I know, KPI visual will show Red if [YTD]< [Previous Year YTD] and show green if [YTD]> [Previous Year YTD]. We couldn't add icons like arrow to show comparison result in KPI. Here I suggest you to create a card visual, set the background of card visual as None and Group two visuals.

Measure:

Arrow =
IF (
    [YTD] = [Previous Year YTD],
    "",
    IF ( [YTD] < [Previous Year YTD], UNICHAR ( 11015 ), UNICHAR ( 11014 ) )
)
Arrow color = 
IF([YTD]<[Previous Year YTD],"Red","Green")

Select [Arrow color] measure in Card Data label Color (fx) > Format Style - Field value.

Result is as below.

1.png

 

Best Regards,
Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

mh2587
Super User
Super User

Measure =
IF ( yourmeasure < 600, UNICHAR ( 9650 ), UNICHAR ( 128315 ) )
//Set your desired criteria instead of 600

Did I answer your question? If so, please mark my post as a solution!


Proud to be a Super User!




LinkedIn Icon
Muhammad Hasnain



Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors