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
juhoneyighot
Helper III
Helper III

Help with Blank result

Hello!

juhoneyighot_1-1733492994128.png

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.

2 ACCEPTED SOLUTIONS
danextian
Super User
Super User

Hi @juhoneyighot 

 

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.





Dane Belarmino | Microsoft MVP | Proud to be a Super User!

Did I answer your question? Mark my post as a solution!


"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.

View solution in original post

Anonymous
Not applicable

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

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

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

danextian
Super User
Super User

Hi @juhoneyighot 

 

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.





Dane Belarmino | Microsoft MVP | Proud to be a Super User!

Did I answer your question? Mark my post as a solution!


"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.
dharmendars007
Super User
Super User

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

LinkedIN 

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