D
DaveS
I am able to use a pop-up dialogue box for user input,
Range("B12").Select
Qty1 = InputBox("Enter Qty 1", "Qty 1", "", 1, 1)
ActiveCell.Value = Qty1
But can I simply run a macro that goes to B12, pauses for
user input, once they enter, it goes to D12, pauses for
user input... etc. etc. without a dialogue box?
Range("B12").Select
Qty1 = InputBox("Enter Qty 1", "Qty 1", "", 1, 1)
ActiveCell.Value = Qty1
But can I simply run a macro that goes to B12, pauses for
user input, once they enter, it goes to D12, pauses for
user input... etc. etc. without a dialogue box?