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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

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
Sept PBI Carousel

Power BI Monthly Update - September 2024

Check out the September 2024 Power BI update to learn about new features.

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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

Top Solution Authors
Top Kudoed Authors