phantom1975
MrExcel MVP
- Joined
- Jun 3, 2002
- Messages
- 3,962
What I am trying to do is set up a Selection_Change event that will make the selection thingy disappear. The only thing I can think of is something like this:
Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range)
Application.EnableEvents = False
Me.Range("A10").Activate
'Rows 10 and below are hidden
ActiveWindow.LargeScroll Up:=1
Application.EnableEvents = True
End Sub
I'm sure there is a better way to do this. Any suggestions?
Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range)
Application.EnableEvents = False
Me.Range("A10").Activate
'Rows 10 and below are hidden
ActiveWindow.LargeScroll Up:=1
Application.EnableEvents = True
End Sub
I'm sure there is a better way to do this. Any suggestions?