Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hello!
I have blank values and zero values. They have to be visualised. I use "show items with no data" to show the blank values, but I also want user to know, that there is no data, so, I need to add a label or something on a place where blank value is. Is there any way to do this?
Solved! Go to Solution.
Thanks for the additional details.
The easiest way to turn blanks into zeros is to use a measure for your Values field that has a "+0" in it. Like this:
Quantity = SUM(Dataset[Value]) + 0
If you want to make it more obvious that there's a zero value in your chart, turn on data labels.
The one kink you might run into is that if, for example, there are no lines of data for series 2 in October, there will be a blank space instead of a zero for that month. I don't think there's any way around that.
If it's text data you're working with, it's possible to use the Query Editor to replace blank data with something more descriptive.
From the Query Editor:
You might need to play around with the right way to identify your blank values in step 3. Some datasets show a single space for what looks like a blank.
If this doesn't quite answer your question, try being a bit more descriptive about the situation your working with. Example data always helps. Show us a sample (or a mock-up) of the data you're starting with, and what you want it to look like in the end.
In my situation: the less value the better. On November the second item is better because it has a zero value, but on October there is no information about the second item while looking on visualisation user may think that the second item is better on October too. So, I want to make a difference between the blank and zero values. Maybe, something like this:
To Power BI (internally Tabular model), there's no difference between blank values and zero values when rendering data in a chart visual. No matter how you transform the value, it will not show any bar/column on either blank or zero values. For your requirement, it can't be achieved.
Regards
If you conditionally format a table, you can get it to format blank cells differently. I'll often filter the blanks so the cells have a grey background.
You could also make a calculated column that has a text string warning that there's no data that could be displayed alongside.
IF( Table[Column] = BLANK(), "No data", BLANK() )
Not sure how I'd incorporate it into a bar chart, short of a custom visual.
Thanks for the additional details.
The easiest way to turn blanks into zeros is to use a measure for your Values field that has a "+0" in it. Like this:
Quantity = SUM(Dataset[Value]) + 0
If you want to make it more obvious that there's a zero value in your chart, turn on data labels.
The one kink you might run into is that if, for example, there are no lines of data for series 2 in October, there will be a blank space instead of a zero for that month. I don't think there's any way around that.
Thank you!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
86 | |
80 | |
53 | |
39 | |
39 |
User | Count |
---|---|
104 | |
85 | |
47 | |
44 | |
43 |