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

Data Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more

Reply
PBINoob_v3
Frequent Visitor

How to avoid Blank

PBINoob_v3_0-1683596770091.png

PBINoob_v3_1-1683596795203.png

 

After filtering the data, both Day and Total Qty are blank.There is no data of last 40 days, so the dashboard is Blank. How to display 0 on the dashboard?

[Day] and [Total Qty] does not have last 40 days' data.

[Day] is Date.

[Total Qty] is Number.

1 ACCEPTED SOLUTION
PBINoob_v3
Frequent Visitor

 

Hi, @DOLEARY85 @Jihwan_Kim 

I solved problem.

Of course  need to create a measure for [Total Qty], but still to make a little change on [Date].

I created a table that data is from Today to Last 40 days.

PBINoob_v3_0-1683685885772.png

And I related the [Date] and [Day]:

PBINoob_v3_1-1683685960711.png

Finaly, it displayed ZERO.

PBINoob_v3_2-1683686008417.png

Thanks for your help!

View solution in original post

7 REPLIES 7
PBINoob_v3
Frequent Visitor

 

Hi, @DOLEARY85 @Jihwan_Kim 

I solved problem.

Of course  need to create a measure for [Total Qty], but still to make a little change on [Date].

I created a table that data is from Today to Last 40 days.

PBINoob_v3_0-1683685885772.png

And I related the [Date] and [Day]:

PBINoob_v3_1-1683685960711.png

Finaly, it displayed ZERO.

PBINoob_v3_2-1683686008417.png

Thanks for your help!

Jihwan_Kim
Super User
Super User

Hi, 
Plrease try creating a new measure that looks something like below.

 

New Measure: =
[Total Qty] + 0

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

Hi,

This is my measure:

total_line2 =
var _sales = SUM('ProdManual Line_Line2'[Total Qty])
return
IF(ISBLANK(_sales),0,_sales)
It doesn't work. Maybe it is [Day] 's problem

Hi,

 

try this:

 

total_line2 =
var _sales = SUM('ProdManual Line_Line2'[Total Qty])
return
COALESCE(_sales,0)
 
If I answered your question, please mark my post as solution, Appreciate your Kudos 👍

It is still Blank. 

[Day] and [Total Qty] are blank in the table, because there are no data of last 40 days.

Maybe i should create a measure for [Day]?

You could try that,

 

Maybe try the COALESCE on the Var before:

 

total_line2 =
var _sales = COALESCE(SUM('ProdManual Line_Line2'[Total Qty]),0)
return
COALESCE(_sales,0)
 
If I answered your question, please mark my post as solution, Appreciate your Kudos 👍

Hi, @DOLEARY85 

I just tried the COALESCE on the Var before, but it doesn't work.

I think maybe it is [Day]'s problem.May I ask you how to create a measure for Date.

Thank you!

Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.