M Mark Kubicki Sep 29, 2003 #1 vs, the worksheet attached to the last visible tab displayed in the view? thanks in advance mark
D Dave Peterson Sep 30, 2003 #2 One way: Option Explicit Sub testme04() Dim iCtr As Long For iCtr = Worksheets.Count To 1 Step -1 If Worksheets(iCtr).Visible = xlSheetVisible Then Worksheets(iCtr).Select Exit For End If Next iCtr End Sub
One way: Option Explicit Sub testme04() Dim iCtr As Long For iCtr = Worksheets.Count To 1 Step -1 If Worksheets(iCtr).Visible = xlSheetVisible Then Worksheets(iCtr).Select Exit For End If Next iCtr End Sub