Clear Contents If

billandrew

Well-known Member
Joined
Mar 9, 2014
Messages
743
Good evening

Looking to clear all if any one of the following worksheets exists otherwise continue to add the sheets if they do not exist.

Not sure how to proceed

With ThisWorkbook
On Error Resume Next
.Sheets.Add(after:=.Sheets(.Sheets.Count)).Name = "RegionA"
.Sheets.Add(after:=.Sheets(.Sheets.Count)).Name = "RegionB"
.Sheets.Add(after:=.Sheets(.Sheets.Count)).Name = "RegionC"
.Sheets.Add(after:=.Sheets(.Sheets.Count)).Name = "RegionD"
On Error GoTo 0

End With
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
Code:
Dim sh As Worksheet, flg As Boolean

For Each sh In Worksheets
If sh.Name = "RegionA" Then flg = True: Exit For
Next
If flg = True Then
Sheets("RegionA").Cells.ClearContents
Else
Worksheets.Add(after:=Sheets(Sheets.Count)).Name = "RegionA"
End If
flg = False


For Each sh In Worksheets
If sh.Name = "RegionB" Then flg = True: Exit For
Next
If flg = True Then
Sheets("RegionB").Cells.ClearContents
Else
Worksheets.Add(after:=Sheets(Sheets.Count)).Name = "RegionB"
End If
flg = False


For Each sh In Worksheets
If sh.Name = "RegionC" Then flg = True: Exit For
Next
If flg = True Then
Sheets("RegionC").Cells.ClearContents
Else
Worksheets.Add(after:=Sheets(Sheets.Count)).Name = "RegionC"
End If
flg = False


For Each sh In Worksheets
If sh.Name = "RegionD" Then flg = True: Exit For
Next
If flg = True Then
Sheets("RegionD").Cells.ClearContents
Else
Worksheets.Add(after:=Sheets(Sheets.Count)).Name = "RegionD"
End If
 
Upvote 0

Forum statistics

Threads
1,215,807
Messages
6,127,005
Members
449,351
Latest member
Sylvine

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top