Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi
I am trying to create a bar chart where in for some of the weeks/months there is no data however, I would like to display 0 instead of blank. Please help if there any options or workaround.
Thanks,
Krishna.
Solved! Go to Solution.
Hi @Anonymous ,
In the column chart zero would be no column in the x-axis.
If you just want to show 0 as lable as well as the other column, then you could create a formula and add +0 at the end of it.
Measure = SUM('Table'[Column2])+0
Best Regards,
Jay
Hi @Anonymous ,
In the column chart zero would be no column in the x-axis.
If you just want to show 0 as lable as well as the other column, then you could create a formula and add +0 at the end of it.
Measure = SUM('Table'[Column2])+0
Best Regards,
Jay
@Anonymous , +0 in measure can help , but it will show all dates , Try like this example
0 between range
new Measure = var _1= [measure]+0
var _min = minx(ALLSELECTED('Calendar'), 'Calendar'[Date])
var _max = maxx(ALLSELECTED('Calendar'), 'Calendar'[Date])
return
CALCULATE(if(max('Calendar'[Date]) <_min || max('Calendar'[Date]) >_max , BLANK(), _1))
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
81 | |
80 | |
60 | |
35 | |
35 |
User | Count |
---|---|
100 | |
62 | |
56 | |
47 | |
41 |