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! Request now

Reply
RamiGamal
Frequent Visitor

Conditional Formatting Column Based Comparing Measure With Value in Column

Hello There,

 

I am having a column chart where 

X: Machine

Y: Actual Performance

 

Where "Actual Performance" is a Measure, I have also table similar to the below

MachineTarget
A90%
B95%
C85%

 

Now I want to conditional format the columns in the chart as:

If the Actual Performance >= Target then Green otherwise it shall be red.

I know it shall be done through conditional formatting by a field value but I am confused on how to construct the correct Measure.

 

Any help on this is much appreciated, Thanks

1 ACCEPTED SOLUTION
RamiGamal
Frequent Visitor

I have figured it out and I'm putting the solution here in case someone has a similar case:

1-Create a measure for your target

Target Measure = IF(DISTINCTCOUNT('Table'[Machine])=1,MAX('Table'Target))

Then another measure for conditional formatting

Conditional Format = IF([Performance]>= [Target Measure],"Green","Red")

Keeping in mind to have a relation between Machine columns If you have two table

View solution in original post

1 REPLY 1
RamiGamal
Frequent Visitor

I have figured it out and I'm putting the solution here in case someone has a similar case:

1-Create a measure for your target

Target Measure = IF(DISTINCTCOUNT('Table'[Machine])=1,MAX('Table'Target))

Then another measure for conditional formatting

Conditional Format = IF([Performance]>= [Target Measure],"Green","Red")

Keeping in mind to have a relation between Machine columns If you have two table

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