Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have the code below which moves the cursor to A1 on all Sheets.
Problem is that I have a number of Hidden sheets which I do not want the Cursor to move to A1, how can I do this i.e. ignore any hidden sheets? Thanks Private Sub Workbook_Open() Application.ScreenUpdating = False Dim sh As Object Dim Sh1 As Object Set Sh1 = ActiveSheet For Each sh In ActiveWorkbooks.Worksheets sh.Activate Range("A1").Select Next Sh1.Activate End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Have cursor go to specific place when worksheet opens? | Excel Discussion (Misc queries) | |||
move cursor on one sheet moves cursor on all sheets | Excel Discussion (Misc queries) | |||
Select which cell enter will place the cursor | Excel Discussion (Misc queries) | |||
Keeping cursor in same place on all worksheets in a workbook | Excel Worksheet Functions | |||
why can't I place the cursor directly on certain cells? | Excel Discussion (Misc queries) |