Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
vs, the worksheet attached to the last visible tab displayed in the view?
thanks in advance mark |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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 Mark Kubicki wrote: vs, the worksheet attached to the last visible tab displayed in the view? thanks in advance mark -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Protect sheet unchecking "Select locked cells" has undesiredresults | Excel Discussion (Misc queries) | |||
Created date in "General" tape and "Statistics" tape | Excel Discussion (Misc queries) | |||
"Control" plus "click" doesn't allow me to select multiple cells | New Users to Excel | |||
Questionnaire sheet: Select "yes" or "no," and only one can be selected | Excel Worksheet Functions | |||
Help required with setting up a pivot table with the source on sheet1 to have the pivot table created on sheet called "report" | Excel Programming |