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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
Vinod_G_245
Helper I
Helper I

Conditional formatting based on fieldvalue in Advance Card

Hi Team,

we are using advanced card visual in Power BI, for that value we want to apply conditional formatting.

Example: If actual value > Buget value then the numbers should be in Green, if the actual value is between 95% to 100% of budget value then it is Amber, if the value is actual value is <95% then it is red.

Note: This can be achieved in  table and matrix visual by selecting field measue, for business requirement we are using advance card.

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Vinod_G_245 ,

As checked the setting options of advanced card, there is no conditional formatting option for the card value. As an workaround, you can create a default card visual to replace it.

yingyinr_1-1675231564466.png

Then create a similar measure as below and apply the conditional formatting for the callout value of card as below screenshot...

Conditional formatting =
IF (
    [Actual] > [Budget],
    "Green",
    IF ( [Actual] >= 0.95 * [Budget] && [Actual] <= [Budget], "Amber", "Red" )
)

yingyinr_0-1675231541167.png

Best Regards

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @Vinod_G_245 ,

Whether your problem has been resolved? If yes, could you please mark the helpful post as Answered? It will help the others in the community find the solution easily if they face the same problem as yours. Thank you.

Best Regards

Anonymous
Not applicable

Hi @Vinod_G_245 ,

As checked the setting options of advanced card, there is no conditional formatting option for the card value. As an workaround, you can create a default card visual to replace it.

yingyinr_1-1675231564466.png

Then create a similar measure as below and apply the conditional formatting for the callout value of card as below screenshot...

Conditional formatting =
IF (
    [Actual] > [Budget],
    "Green",
    IF ( [Actual] >= 0.95 * [Budget] && [Actual] <= [Budget], "Amber", "Red" )
)

yingyinr_0-1675231541167.png

Best Regards

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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