excelerating
New Member
- Joined
- May 8, 2010
- Messages
- 2
I'm trying to use this spinner button to scroll through a document to the left or right 7 cells at a time.
I've tried the following code and others, but can't get it to work.
Thx in advance
I've tried the following code and others, but can't get it to work.
Private Sub SpinButton1_Change()
End Sub
Private Sub SpinButton1_SpinDown()
With Range("B2").Select = .Select + 7
End With
End Sub
Private Sub SpinButton1_SpinUp()
With Range("B2").Select = .Select + 7
End Sub
End Sub
Private Sub SpinButton1_SpinDown()
With Range("B2").Select = .Select + 7
End With
End Sub
Private Sub SpinButton1_SpinUp()
With Range("B2").Select = .Select + 7
End Sub
Thx in advance
Last edited: