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! Learn more

Reply
Anonymous
Not applicable

Tips and tricks: Best way of Showing missing prices in BI deskop?

Hi,

I have a question, which visualizations is best for showing missing prices (of 100 000 diffrents products) in power bi?

1 ACCEPTED SOLUTION

Hi @Anonymous ,

 

Sorry for that line chart cannot display dates with null values.

You can only use 0 instead to show it in the visual.

Create a measure like this,

 

Measure = 
IF(
    ISBLANK(SUM('Table'[Price])),0,SUM('Table'[Price]))

 

Put it in a line chart and the resultl like this,

 

Tips.jpg

 

Best regards,

 

Community Support Team _ zhenbw

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

BTW, pbix as attached.

View solution in original post

7 REPLIES 7
Anonymous
Not applicable

Super thanks

Greg_Deckler
Community Champion
Community Champion

@Anonymous - Perhaps you need something like an inverse selector - https://community.powerbi.com/t5/Quick-Measures-Gallery/Inverse-Selector/m-p/648290#M325

 

Otherwise Not really enough information to go on, please first check if your issue is a common issue listed here: https://community.powerbi.com/t5/Community-Blog/Before-You-Post-Read-This/ba-p/1116882

Also, please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490

The most important parts are:
1. Sample data as text, use the table tool in the editing bar
2. Expected output from sample data
3. Explanation in words of how to get from 1. to 2.



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...
Anonymous
Not applicable

I think maybe that I will plot a graph to see if there is a 'big jump' towards zero or something.. But I know for sure that I have (blanks)-in my data set, but it won't show - seemes like the graph summerizes or something I can illustrate an example here how my data set ish looks like:

Date.                Product.    Price.

2020-08-06      A               (blank)

2020-04-06.     A               (blank)

2020-04-11.     A               (blank)

 

But the thing is,, when I add a slicer in to my deskop, I can't even find the product A - is that beacuse there is a Blank-value? 

betwwen there is prices. 

 

And  when I plot it, it says that that there is a value that date?? why?

Hi @Anonymous ,

 

What kind of visual do you want to show, a table visual, a line chart or a column chart? What is the field in slicer, is it the Product.

 

When you put data in a table visual, it will aggregate in advance.

So you need to click don’t summarize, then the blank row will show.

 

Tips.jpg

 

If it doesn’t meet your requirement, could you please show the exact expected result based on the table that you have shared?

 

Best regards,

 

Community Support Team _ zhenbw

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

BTW, pbix as attached.

Anonymous
Not applicable

Hello, sorry for delayed answer.

 

Yeah, my data look like the picture you have attached. 

 

But I want to have it in a line chart as well. How do I do that? 

 

Br,

Hi @Anonymous ,

 

Sorry for that line chart cannot display dates with null values.

You can only use 0 instead to show it in the visual.

Create a measure like this,

 

Measure = 
IF(
    ISBLANK(SUM('Table'[Price])),0,SUM('Table'[Price]))

 

Put it in a line chart and the resultl like this,

 

Tips.jpg

 

Best regards,

 

Community Support Team _ zhenbw

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

BTW, pbix as attached.

amitchandak
Super User
Super User

@Anonymous , The information you have provided is not making the problem clear to me. Can you please explain with an example.

But in such case, you should use table or Matrix
Appreciate your Kudos.


Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
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!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

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