Forum Discussion
Bhaskar1986
2 years agoFrequent Visitor
Power BI. Need support
I want show zero for the week number were they dont have volume for the particular week in the line chart
Dhairya
Solution Supplier
2 years agoHey Bhaskar1986
You can display zero by just adding "+0" at the end of your measure.
For example you are plotting measure named "Total Volume"
where you can create measure as below
Total Volume = SUM(Table[volume]) + 0
This will add zero when record are null in particular week.
If this helps you then please mark my solution as accepted so that others can find it quickly while facing the similar issue. Thank You!