View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
[email protected] idyllicabyss@googlemail.com is offline
external usenet poster
 
Posts: 32
Default Example of input or msg box requesting TWO pieces of info?

You could create a userform with two textboxes on it.

Or bring up two inputboxes, one after the other;

usrIn1 = input("Type your first response...")
usrIn2 = input("Type your second response...")
msgbox "you typed; " & chr(13) & "1: " & usrIn1 & chr(13) & "2: " &
usrIn2