Sorry, I got the error wrong, it was the #N/A one. On my graphs (excel 2003), this just gets ignored, whereas if the cells are empty or zero it tries to plot along the axis. This = very annoying!
Not to worry though, got it sorted with a macro instead.
In case anyone else has the same problem, here is the code
Dim NomkV As Double
Dim MeaskV As Double
Dim MaxDev As Double
Sheets("Output Calculations").Select
Range("O19").Select
i = 0
Do Until IsEmpty(ActiveCell)
If Not IsError(ActiveCell.Value) Then
MeaskV = ActiveCell.Value
MaxDev = ActiveCell.Offset(0, 2)
NomkV = ActiveCell.Offset(0, -1).Value
Sheets("Report").Select in kV
Range("B32").Select
Do Until IsEmpty(ActiveCell)
ActiveCell.Offset(1, 0).Select
Loop
ActiveCell.Value = NomkV
ActiveCell.Offset(0, 2).Value = MeaskV
ActiveCell.Offset(0, 4).Value = MaxDev
End If
i = i + 1
Sheets("Output Calculations").Select
Range("O19").Select
ActiveCell.Offset(i, 0).Select
Loop
Bookmarks