cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

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
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors