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! Learn more

Reply
ktt777
Helper V
Helper V

Display blank and 0

Hi All

The blank space in below column is 0% , but power bi shows it as blank .

How can i set to show 0 insteas of blank

 

ktt777_0-1621655263189.png

thanks, 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @ktt777 

The most convenient way is to add a measure to determine whether the value is a null value, if it returns 0, if not, return the original value .

Measure = IF(SELECTEDVALUE('Table'[Value])=BLANK(),0,SELECTEDVALUE('Table'[Value]))

The effect is as shown :

Ailsa-msft_0-1621847419488.png

 

Best Regards

Community Support Team _ Ailsa Tao

 

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

3 REPLIES 3
Anonymous
Not applicable

Hi @ktt777 

The most convenient way is to add a measure to determine whether the value is a null value, if it returns 0, if not, return the original value .

Measure = IF(SELECTEDVALUE('Table'[Value])=BLANK(),0,SELECTEDVALUE('Table'[Value]))

The effect is as shown :

Ailsa-msft_0-1621847419488.png

 

Best Regards

Community Support Team _ Ailsa Tao

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

HashamNiaz
Solution Sage
Solution Sage

Hi @ktt777 !

You can write your measure using ISBLANK() shown in below DAX;

 

Sales = IF(ISBLANK(SUM(Table[Sales])), 0 , SUM(Table[Sales])

 

Regards,

Hasham

 

amitchandak
Super User
Super User

@ktt777 , add +0 to the measure and try

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

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