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

Show Variation with graphs

Hello! 

 

I have a list of values and I want to compare the two and show in a table the variation, 

but i want to show it ghraphically like this

 127.PNG

I know its possible with the var char funtion or something like that

 

Please I need help!

1 ACCEPTED SOLUTION
MFelix
Super User
Super User

Hi @Anonymous ,

 

You need to create a measure similar to this:

var = 
SWITCH (
    TRUE ();
    [Variation] > 0,1; UNICHAR ( 9650 );
    [Variation] < 0; UNICHAR ( 9660 );
    UNICHAR ( 9644 )
)

Don't know the limits for you to consider positive or negative you can change the 0,1 and 0 to whatever values fit your desired result.

 

Then using the conditional formating you can select the colors.

variation.png

 

Regards,

MFelix


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



View solution in original post

1 REPLY 1
MFelix
Super User
Super User

Hi @Anonymous ,

 

You need to create a measure similar to this:

var = 
SWITCH (
    TRUE ();
    [Variation] > 0,1; UNICHAR ( 9650 );
    [Variation] < 0; UNICHAR ( 9660 );
    UNICHAR ( 9644 )
)

Don't know the limits for you to consider positive or negative you can change the 0,1 and 0 to whatever values fit your desired result.

 

Then using the conditional formating you can select the colors.

variation.png

 

Regards,

MFelix


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



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