still learning
Well-known Member
- Joined
- Jan 15, 2010
- Messages
- 821
- Office Version
- 365
- Platform
- Windows
Hi
How would I pause this macro till the user moves the cursor?
mike
How would I pause this macro till the user moves the cursor?
VBA Code:
Sub numberoffill()
Dim I As Long
MsgBox " put cursor on start "
For I = 1 To 6
tofillrows
Next I
lastrow
End Sub
mike