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

How to handle numeric null or blank values

I building a visual table where some values on some days has null or blank values. Please advise. Thanks in advance.

 

 

Accepted = if(isblank(SUM(Chat_Snowflake[ACCEPTED Original])),0,SUM(Chat_Snowflake[ACCEPTED Original]))

 

 

or

 

 

Accepted = if(SUM(Chat_Snowflake[ACCEPTED Original]=0,0,SUM(Chat_Snowflake[ACCEPTED Original])

 

 

 

akosiRandy_0-1692803423935.png

 

1 ACCEPTED SOLUTION
kpost
Super User
Super User

what exactly are you trying to do with the blank values?

It looks like maybe you want them to display as zeros?

Accepted = COALESCE(SUM(Chat_Snowflake[ACCEPTED Original]), 0)

//Mediocre Power BI Advice,  but it's free//

View solution in original post

3 REPLIES 3
akosiRandy
Frequent Visitor

using Accepted = coalesce(sum(Chat_Volume[ACCEPTED Original]),0) works on a table visuals, but not in matrix (see above). thanks.

kpost
Super User
Super User

what exactly are you trying to do with the blank values?

It looks like maybe you want them to display as zeros?

Accepted = COALESCE(SUM(Chat_Snowflake[ACCEPTED Original]), 0)

//Mediocre Power BI Advice,  but it's free//

@kpost somehow, it works on table visual, but not on matrix visual hmmm

akosiRandy_0-1692807018732.png

 

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

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!

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