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
helenbjones
Frequent Visitor

Show Cells with conditional formatting but null value

Hi, need some help please. I have a matrix with values in and conditional formatting based on another value. I need null values to also show if the conditional formatting value is valid. So, for example, the sum value is 0 but the conditional formatting is based on a differenct column which has a value of 1 and so should give a geen cell. However, I am not getting this empty green cell and I need to.

1 ACCEPTED SOLUTION
v-cherch-msft
Microsoft Employee
Microsoft Employee

Hi @helenbjones 

You may try to create a measure with ISBLANK function.[SumValue] is 0.For example:

Measure =
IF (
    ISBLANK ( SUM ( Table1[Column1] ) )
        || SUM ( Table1[Column1] ) > [SumValue],
    1
)

1.png

Regards,

Community Support Team _ Cherie Chen
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

1 REPLY 1
v-cherch-msft
Microsoft Employee
Microsoft Employee

Hi @helenbjones 

You may try to create a measure with ISBLANK function.[SumValue] is 0.For example:

Measure =
IF (
    ISBLANK ( SUM ( Table1[Column1] ) )
        || SUM ( Table1[Column1] ) > [SumValue],
    1
)

1.png

Regards,

Community Support Team _ Cherie Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

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
Top Kudoed Authors