Hide or show data labels depending on value?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a chart where I would like to either show or hide data labels for
individual points depending on the value of the points. Does anyone know of
ways of doing this?
 
Try one of these utilities that link worksheets cells to the data labels...
from yours truly - Chart Data Labels... http://www.realezsites.com/bus/primitivesoftware
from Rob Bovey - Chart Labeler... http://appspro.com
from John Walkenbach - Chart Tools... http://j-walk.com
--
Jim Cone
San Francisco, USA


"L. Lancin" <[email protected]>
wrote in message
I have a chart where I would like to either show or hide data labels for
individual points depending on the value of the points. Does anyone know of
ways of doing this?
 
I did a learn macro on one of my charts. I selected only one point on a
scatter plot. Below is the code that was generated when I set x and y. the
showvalue parameter was set true

ActiveChart.SeriesCollection(1).Points(8).Select
ActiveChart.SeriesCollection(1).Points(8).ApplyDataLabels
AutoText:=True, _
LegendKey:=False, ShowSeriesName:=False, ShowCategoryName:=True, _
ShowValue:=True, ShowPercentage:=False, ShowBubbleSize:=False
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top