Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
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
I know its possible with the var char funtion or something like that
Please I need help!
Solved! Go to Solution.
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.
Regards,
MFelix
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsHi @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.
Regards,
MFelix
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsAdvance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.