Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
DylanHzj
Frequent Visitor

Replace blank with 0 in line chart

Hi all,

 

Just as the picture below, I created a measure using counta function and make a line chart (week vs count text), but I found some had no points. So I checked the form and found there were several blanks. 

So, how can I replace the blank with 0 and show up on the line chart. I have tried the "if" function like Measures = if(counta([forms])=0, counta([forms]),0), but did not work.

Look forward to hearing from you if you offer any solution~

DylanHzj_0-1679397269910.png

 

1 ACCEPTED SOLUTION
Manendra
Resolver I
Resolver I

Hi @DylanHzj 

Here is a quick workaround which I did for your requirement. 

Manendra_0-1679572833877.png

You can replace blanks with 0 in your Power query editor else, you can create a calculated column using the following DAX in Power BI desktop.

 

A Column = IF(Sheet1[A] = BLANK(),0,Sheet1[A])

 

This calculated column is going to have 0 where there is a blank value in your master column, and you need to use this calculated column in your line chart to plot the zero values.

 

Here is the sample .pbix file Linechart with zeros.pbix

 

Let me know if you are still having issues.

 

Cheers, 

Manendra.

View solution in original post

3 REPLIES 3
Manendra
Resolver I
Resolver I

Hi @DylanHzj 

Here is a quick workaround which I did for your requirement. 

Manendra_0-1679572833877.png

You can replace blanks with 0 in your Power query editor else, you can create a calculated column using the following DAX in Power BI desktop.

 

A Column = IF(Sheet1[A] = BLANK(),0,Sheet1[A])

 

This calculated column is going to have 0 where there is a blank value in your master column, and you need to use this calculated column in your line chart to plot the zero values.

 

Here is the sample .pbix file Linechart with zeros.pbix

 

Let me know if you are still having issues.

 

Cheers, 

Manendra.

Manendra
Resolver I
Resolver I

Hi @DylanHzj 

 

Can you add +0 at the end of your measure? 

 

Ex: Measures = if(counta([forms])=0, counta([forms]),0)+0

 

Let me know if you are still having issues.

 

Cheers,
Manendra

Thanks for replying but this solution did not work. We still have no value in the forms.

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

November Carousel

Fabric Community Update - November 2024

Find out what's new and trending in the Fabric Community.

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.