So I know how to always open to a specific sheet.
The following in ThisWorkbook:
Sub Workbook_Open()
Worksheets("Summary").Activate
Range("A1").Activate
End Sub
But - I want to change this to open to the first visible worksheet instead. In case this sheet gets renamed or deleted.
Thoughts?
Thanks!!!
The following in ThisWorkbook:
Sub Workbook_Open()
Worksheets("Summary").Activate
Range("A1").Activate
End Sub
But - I want to change this to open to the first visible worksheet instead. In case this sheet gets renamed or deleted.
Thoughts?
Thanks!!!