Hi All

It may well be that this is not possible, but is there anyway to delete a sheet if it exists without looping through every worksheet?

Something like:

'Sheets("Pivot Rows").Delete
'On Error Resume Next
If Error Then GoTo ErrorHandler:
Sheets("Pivot Rows").Delete
ErrorHandler:
Both of the above give me a run-time error '5': Invalid procedure call or argument

Many thanks in advance