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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
Kodonnellm
Frequent Visitor

Conditional Formatting Measure Not Working Across rows

I have a conditional formatting table with the following measure applied, but not all my rows are highlighted red when they should be, any idea why that is? I have the conditional formula applied to the actual values. 

 

Color Indicator =
IF (
SUM ( 'FTE Portfolio Grid_Full Data_data'[Act FTE] ) > SUM ( 'FTE Portfolio Grid_Full Data_data'[Fcse FTE] ),
"red",
BLANK()
)

 

Kodonnellm_1-1733845024206.png

 

3 REPLIES 3
Anonymous
Not applicable

Hi @Kodonnellm 

I have offered a reply on your original post.

Need help with conditional formatting based on ano... - Microsoft Fabric Community

And after testing, it can work, can you provide some sample data or sample pbix that hide your sensitive information so that can provide more suggestion for you.

 

Best Regards!

Yolo Zhu

Omid_Motamedise
Super User
Super User

Use this one

 

Color Indicator = var x= SUM ( 'FTE Portfolio Grid_Full Data_data'[Fcse FTE] )
return IF (
SUM ( 'FTE Portfolio Grid_Full Data_data'[Act FTE] ) > x,
"red",
BLANK()
)


If my answer helped solve your issue, please consider marking it as the accepted solution.
quantumudit
Super User
Super User

Hello @Kodonnellm 

To better understand the problem, please provide a sample dataset and a use case. The current description does not offer sufficient context to grasp the issue you are encountering.

 

Thanks,

Udit

 

 

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors