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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Brian874
Frequent Visitor

%of hours used vs % to target

Hi,

 

I am using the below for my analysis but want to create a red and green, situation where if the #leads to the total expected leads % is higher than the total hours used % then the column will show red. If the #leads to the total expected leads % is lower than the total hours used % then the column will show green

Brian874_0-1668167025549.png

 

1 ACCEPTED SOLUTION
v-henryk-mstf
Community Support
Community Support

Hi @Brian874 ,

 

You can try below two solution:

YOY char =
IF (
    ISBLANK ( [YOY] ) = FALSE (),
    IF ( [YOY] > 0, UNICHAR ( 9650 ), UNICHAR ( 9660 ) ),
    BLANK ()
)

or

YOY color =
SWITCH ( TRUE (), [YOY] > 0, "#0ec600", [YOY] < 0, "#c60000" )

vhenrykmstf_0-1669021733004.png

vhenrykmstf_1-1669021755922.png

If the problem is still not resolved, please provide detailed error information and let me know immediately. Looking forward to your reply.


Best Regards,
Henry


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

3 REPLIES 3
v-henryk-mstf
Community Support
Community Support

Hi @Brian874 ,

 

You can try below two solution:

YOY char =
IF (
    ISBLANK ( [YOY] ) = FALSE (),
    IF ( [YOY] > 0, UNICHAR ( 9650 ), UNICHAR ( 9660 ) ),
    BLANK ()
)

or

YOY color =
SWITCH ( TRUE (), [YOY] > 0, "#0ec600", [YOY] < 0, "#c60000" )

vhenrykmstf_0-1669021733004.png

vhenrykmstf_1-1669021755922.png

If the problem is still not resolved, please provide detailed error information and let me know immediately. Looking forward to your reply.


Best Regards,
Henry


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

 

Hi @v-henryk-mstf  this, unfortunately, did not work as it came up as an error.....do I need to create a new column and then a measure?

amitchandak
Super User
Super User

@Brian874 , you need only color in font then you can create color based on the measure. But in this, you have to create a unichar measure and color . And use color measure in conditional formatting using field value option. Unichar measure as new value in visual 

 

 

example

 

/////Arrow
Arrow =
var _change =[Net Sales YTD]-[Net Sales LYTD]
return
SWITCH (
TRUE(),
_change > 0, UNICHAR(9650),
_change = 0, UNICHAR(9654),
_change < 0, UNICHAR(9660)
)


/////Arrow Color
Arrow color =
var _change =[Net Sales YTD]-[Net Sales LYTD]
return
SWITCH (
TRUE(),
_change > 0, "green",
_change = 0, "blue",
_change < 0, "red"
)

 

UNICHAR - Tool for Custom Icon Formatting: https://www.youtube.com/watch?v=veCtfP8IhbI&list=PLPaNVDMhUXGaaqV92SBD5X2hk3TMNlHhb&index=50

 

https://exceleratorbi.com.au/conditional-formatting-using-icons-in-power-bi/
https://community.powerbi.com/t5/Desktop/FORMAT-icon-set-for-use-in-a-data-card/td-p/811692

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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