Windows 10, Excel 2016, I want to skip over hidden worksheets when running a VBA routine. To skip over the worksheet "TimeSheet2" when it is hidden the code I'm using is;
On Error GoTo SkipError_1
ThisWorkbook.Sheets("TimeSheet2").Select
More Code
SkipError_1:
SkipError_1 functions as...