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.
exists = False
For Each wkSheet in Thisworkbook.Worksheets
if wkSheet.Name = "Sheet4" Then
exists = True
End If
Next
If exists = False then
Thisworkbook.Sheets.Add Before:= _
Worksheets(Worksheets.Count)
ThisWorkbook.ActiveSheet.Name = "Sheet4"
End IF