Select your data labels, then choose Format * Data Labels. In the Format
Data Labels dialog, click the Number tab and choose Custom from the Category
list. Then enter this custom number format in the 'Type' box:
General;-General;
This displays positive and negative values using the "General" number
format. Zeros are not displayed. To use a more specific number format,
change the two instances of General to some other codes.
John Walkenbach
For Excel tips, macros, & downloads...
http://j-walk.com/ss
"Diana Child" <mben...@hotmail.com> wrote in message
news:245d01c2446c$67e0fcf0$36ef2ecf@tkmsftngxa12...
You could probably even write a macro that does the filtering for all 30
sheets with a single button click.
John Walkenbach
For Excel tips, macros, & downloads...
http://j-walk.com/ss
"Diana Child" <mben...@hotmail.com> wrote in message
news:251c01c2447b$77ce4c30$36ef2ecf@tkmsftngxa12...
Sub RemoveZeroLabels()
Dim myPoint As Point
With ActiveChart.SeriesCollection(1)
For Each myPoint In .Points
If CSng(myPoint.DataLabel.Text) = 0 Then
myPoint.DataLabel.Delete
End If
Next
End With
End Sub
- Jon
-------
Jon Peltier, Microsoft Excel MVP
http://www.geocities.com/jonpeltier/Excel/index.html
_______
In article <uI5RD5HRCHA.2336@tkmsftngp08>, jo...@j-walk.com says...