Forum Discussion
Displaying data label (x-axis) for a clustered column chart when there is zero value
- Anonymous8 years ago
wilfredtsk,
Do you have the "Fdn Science" value in your table? Does you measure return blank value for the "Fdn Science" category? If so, create a new measure using DAX below, drag this new measure to the column chart and turn on data label.NewMeasure= if(isblank([Measure]),0,[Measure])
Regards,Lydia
wilfredtsk,
I am not quite sure what is your expected result. How about you turn on data label.
Regards,
Lydia
Hi Lydia,
Thank you for replying as always.
Here's my expected results..., i.e. showing that "Fdn Science"....
Warm Regards,
Wilfred
- Anonymous8 years agoNot applicable
wilfredtsk,
Do you have the "Fdn Science" value in your table? Does you measure return blank value for the "Fdn Science" category? If so, create a new measure using DAX below, drag this new measure to the column chart and turn on data label.NewMeasure= if(isblank([Measure]),0,[Measure])
Regards,Lydia
- wilfredtsk8 years agoHelper I
Anonymous
Hi Lydia,
Wow! You are always awesome. Yes! It works. Thank you so much!