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
Hello!
Anyone how I can rid of this Blank that shows in the visual.
If it has no value just don't show [Blank]
Thank you.
Solved! Go to Solution.
You can use COALESCE("", [mymeasure]) to return blank as an empty string but that will return a text. Alternatively, you can use conditional formatting on font color to make the blanks transparent. Example conditional formatting
IF ( ISBLANK ( [mymeasure] ), "RGBA(0,0,0,0)" )
This is to be used font color conditional formatting as field value.
Hi @juhoneyighot ,
You can use ISBLANK() to determine whether the returned result is balnk and return "".
For example.
Measure = IF(ISBLANK(returned result),"",returned result)
Best regards,
Mengmeng Li
Hi @juhoneyighot ,
You can use ISBLANK() to determine whether the returned result is balnk and return "".
For example.
Measure = IF(ISBLANK(returned result),"",returned result)
Best regards,
Mengmeng Li
You can use COALESCE("", [mymeasure]) to return blank as an empty string but that will return a text. Alternatively, you can use conditional formatting on font color to make the blanks transparent. Example conditional formatting
IF ( ISBLANK ( [mymeasure] ), "RGBA(0,0,0,0)" )
This is to be used font color conditional formatting as field value.
Hello @juhoneyighot ,
Replace Blank Values in DAX Measures
Measure =
IF(ISBLANK(SUM(Table[Column])),
BLANK(),
SUM(Table[Column]))
If you find this helpful , please mark it as solution which will be helpful for others and Your Kudos/Likes 👍 are much appreciated!
Thank You
Dharmendar S
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.