Forum Discussion
Broken Line Charts
I'm not sure what you mean by "fill the missing values with 0 in your SSAS". The measures are aggregations of facts, in this case counts of facts, which returns an integer. The months missing values are months where there is no related fact record for that intersection of values. If for example, I add some sort of bogus fact record associated to the axi, then the count of records will be 1. So there isn't any record that can be populated with a 0, because it is a count.
It seems that the Response Count measure may return BLANK(). What about changing your measure like below?
Measure = IF ( Count = BLANK(), 0, Count )
Then if there is no record in one month, the count will be 0 but not BLANK for that month and line chart should not broke any more.
Best Regards,
Herbert