JamieArvato
Technical User
How do I write code to say if there is a sheet1 in the workbook then delete if not then end if.
thanks
thanks
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Application.DisplayAlerts = False
On Error Resume Next
Worksheets("sheet1").Delete
On Error GoTo 0
Application.DisplayAlerts = True