Forum Discussion
Broken Line Charts
Is the type of Month column Text? If yes, you will see the “broken” line chart. I think the only way is to fill the missing values with 0 in your SSAS.
If the type of Month column is Date, you should be able to see the continuous line.
Best Regards,
Herbert
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.
- v-haibl-msft10 years agoMicrosoft Employee
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