Forum Discussion
Labels for Blank Values
- Anonymous8 years ago
Thanks for the additional details.
The easiest way to turn blanks into zeros is to use a measure for your Values field that has a "+0" in it. Like this:
Quantity = SUM(Dataset[Value]) + 0
If you want to make it more obvious that there's a zero value in your chart, turn on data labels.
The one kink you might run into is that if, for example, there are no lines of data for series 2 in October, there will be a blank space instead of a zero for that month. I don't think there's any way around that.
Thanks for the additional details.
The easiest way to turn blanks into zeros is to use a measure for your Values field that has a "+0" in it. Like this:
Quantity = SUM(Dataset[Value]) + 0
If you want to make it more obvious that there's a zero value in your chart, turn on data labels.
The one kink you might run into is that if, for example, there are no lines of data for series 2 in October, there will be a blank space instead of a zero for that month. I don't think there's any way around that.
Thank you!