macros

F

Frank

How can I write a macro that needs to wait for a user to input information
and then continue to finish the macro action
 
G

Gary''s Student

Just ask for it:

Sub FillMeIn()
x = Application.InputBox(Prompt:="give me some data", Type:=2)
End Sub
 
Top