JasonLevan
Registered User.
- Local time
- Today, 18:38
- Joined
- Jan 25, 2011
- Messages
- 21
I have the following macro
Sub TestMacro()
Range("A2").Select
ActiveCell.FormulaR1C1 = InputBox("Item Number")
Range("B2").Select
ActiveCell.FormulaR1C1 = InputBox("Qty #")
Range("C2").Select
End Sub
it works fine but i want it to repeat itself over and over until I end like the word end or stop or press a number. Any way to do such a thing
Sub TestMacro()
Range("A2").Select
ActiveCell.FormulaR1C1 = InputBox("Item Number")
Range("B2").Select
ActiveCell.FormulaR1C1 = InputBox("Qty #")
Range("C2").Select
End Sub
it works fine but i want it to repeat itself over and over until I end like the word end or stop or press a number. Any way to do such a thing