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.
Sub a()
On Error GoTo mash
Cells.SpecialCells(xlCellTypeConstants).ClearContents
MsgBox "Continuing Code!!"
mash:
If Err.Number = 1004 And Err.Description = "No cells were found." Then
MsgBox "There are no constant cells to select"
Resume Next
End If
End Sub