Forum Discussion
joaquinel
Helper I
3 years agoValues in a Matrix when the result is 0
I have a Matrix where I use the days of my calender table. I want to see all the days of the month even when there is no result. Thanks
- 3 years ago
Hi,
I am not sure how your desired outcome looks like, but I think you can try selecting an option called "show items with no data".
Please check the link down below.
Show items with no data in Power BI - Power BI | Microsoft Learn
Ashish_Mathur
Super User
3 years agoHi,
Once you drag Date from the Calendar Table, write this measure and drag it to your visual
Total = coalesce(sum(Data[sales]),0)
Hope this helps.