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 community,
I'm having some trouble with a line graph showing blank values:
As you can see the financial year runs from March to February. In this instance there were no sales in February 2021 so there is no point plotted on the graph, however I need to show this as 0.
I used the following DAX to plot this point on the graph:
Now I have an issue with how future months, eg July-February 2022 are showing a line at 0.
How do I keep the point for Feb 2021 but drop the future month points from the graph?
Here is the pbix file.
Thanks!
Solved! Go to Solution.
Hi amitchandak, thanks for your reply.
It didn't work because it is using the max date from the calendar rather than the last day of the previous month.
I used SQL & power query to define this and then used your measure and it worked.
For anyone else that is having this problem, here's the pbix with the solution.
Hi amitchandak, thanks for your reply.
It didn't work because it is using the max date from the calendar rather than the last day of the previous month.
I used SQL & power query to define this and then used your measure and it worked.
For anyone else that is having this problem, here's the pbix with the solution.
@C4L84 , Try to control like
0 between range
Measure = var _1= SUM(Opportunity[Opportunity count]) +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 |
---|---|
78 | |
76 | |
59 | |
35 | |
33 |
User | Count |
---|---|
100 | |
62 | |
56 | |
47 | |
41 |