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

Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! 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.


Visit my LinkedIn page by clicking here.


Schedule a meeting with me to discuss further by clicking here.

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
PBIApril_Carousel

Power BI Monthly Update - April 2025

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

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

April2025 Carousel

Fabric Community Update - April 2025

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