still learning
Well-known Member
- Joined
- Jan 15, 2010
- Messages
- 821
- Office Version
- 365
- Platform
- Windows
Hi
the macro that i've been using for awhile stopped working
I can use F8 and it works fine
I have it in "This Workbook" as
and in "Sheets("upcoming")". as
it puts the cursor on the correct date BUT will not scroll
I think it stopped scrolling on May first
Wonder if it has to do with the fact that there is a column called "MAY"
This macro is in a module
mike
the macro that i've been using for awhile stopped working
I can use F8 and it works fine
I have it in "This Workbook" as
VBA Code:
Private Sub Workbook_Open()
Sheets("upcoming").Select
With Sheets("upcoming").Range("A1")
opening
End Sub
VBA Code:
Private Sub Worksheet_activate()
Sheets("upcoming").Select
With Sheets("upcoming").Range("A1")
opening
End Sub
I think it stopped scrolling on May first
Wonder if it has to do with the fact that there is a column called "MAY"
This macro is in a module
VBA Code:
Sub opening()
' for upcoming
Set C = Range("A:A").Find(Date)
If Not C Is Nothing Then C.Select
ActiveWindow.ScrollRow = ActiveCell.Row
ActiveWindow.SmallScroll 'Down:=-1
End Sub
mike