Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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.
Solved! Go to Solution.
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
)
Regards,
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
)
Regards,
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.