Forum Discussion
Need Help with Data Label Disappearing
- 7 months ago
Try replacing BLANK values with 0 using a measure with ISBLANK function. Check visual level filters to remove any 'Show items when value' filters on the measure. Reset data labels, in format pane go to Data labels then Turn OFF/ON, ensure measure is checked under 'Show series as'. Also, please use ALLSELECTED dax function if date filtering affects calculation context.
Try replacing BLANK values with 0 using a measure with ISBLANK function. Check visual level filters to remove any 'Show items when value' filters on the measure. Reset data labels, in format pane go to Data labels then Turn OFF/ON, ensure measure is checked under 'Show series as'. Also, please use ALLSELECTED dax function if date filtering affects calculation context.
The issue turned out to be how I was calculating the label position. Because my X-axis uses biweekly data, centering the variance graphic by using (Max Date − Min Date) / 2 was causing the problem. Your suggestion to look into using BLANK() in my measures helped me identify and fix the issue. Thanks!