Forum Discussion
wilfredtsk
8 years agoHelper I
Displaying data label (x-axis) for a clustered column chart when there is zero value
Hi experts, I am trying to "display" the data label of my graph where there is no data... [reference to my graph, I have a subject-science of which no one achieve a quality pass (after my measur...
- 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
Anonymous
8 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
wilfredtsk
8 years agoHelper I
Anonymous
Hi Lydia,
Wow! You are always awesome. Yes! It works. Thank you so much!