F Frank Mar 19, 2009 #1 How can I write a macro that needs to wait for a user to input information and then continue to finish the macro action
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 Mar 19, 2009 #2 Just ask for it: Sub FillMeIn() x = Application.InputBox(Prompt:="give me some data", Type:=2) End Sub
Just ask for it: Sub FillMeIn() x = Application.InputBox(Prompt:="give me some data", Type:=2) End Sub