Forum Discussion
Missing marker in line chart
- 10 months ago
Hi justinepolanic ,
Thanks for reaching out to the Microsoft fabric community forum.Please try using this DAX measure
Count (With Zero) = COALESCE(SUM('Data'[Count]), 0)
Uploaded the sample .pbix for reference.
I hope this information helps. Please do let us know if you have any further queries.
Thank you
Thank you for your quick response!
I had the same thought of changing the minimum value to -1, but unfortunately it didn't resolve the issue for me. Is there another setting I need to adjust in order for that to work?
Normally the issue happens because Power BI doesn’t plot a data point when that (Month, Series) pair doesn’t exist in the result set, even if the logical count is 0.
To fix it, ensure your visual includes all series-month combinations (via a series table or “Show items with no data”) and your measure returns 0 instead of BLANK by using COALESCE( <your Measure>, 0 )