Forum Discussion
Binway
Helper II
5 years agoLine chart show 0 for missing data and when slicer applied
Hi Folks, I have a data and date table where I am trying to have the line chart drop to 0 when there is missing data. month_starting Business Sales 01/01/2015 FloatyMcBoat 24 01/02/201...
- 5 years ago
Hi Binway ,
Please change the relationship between your date table and fact table to single direction
Then use the following measure:
New Amounts = VAR __min = CALCULATE ( MIN ( MonthlySales[month_starting]), ALLSELECTED(MonthlySales)) VAR __max = CALCULATE ( MAX ( MonthlySales[month_starting]), ALLSELECTED(MonthlySales)) VAR RESULT = IF(MAX(date_dim[first_day_of_month])>=DATE(YEAR(__min-10),MONTH(__min-10),1)&&MAX(date_dim[first_day_of_month])<=__max , SUM(MonthlySales[Sales])+0) return RESULTIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Best Regards,
Dedmon Dai
v-deddai1-msft
Community Support
5 years agoHi Binway ,
Please try to use the following measure:
All Amounts =
VAR sales =
SUMMARIZE (
MonthlySales,
MonthlySales[Business],
date_dim[first_day_of_month],
"QTY", SUM ( MonthlySales[Sales] ) + 0
)
RETURN
SUMX ( sales, [QTY] )
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Best Regards,
Dedmon Dai
Binway
Helper II
5 years agoSorry Dedmon but the 0 value is not appearing in the chart.
I will try a filter for the date in the last line similiar to other formulas and let you know how I go.