Home > Blockchain >  How to create a form where user is repetitively prompted for input using microsoft office
How to create a form where user is repetitively prompted for input using microsoft office

Time:06-10

I want to create a form where user is repetitively prompted for input (text), and have that input inserted automatically in a word document. for instance : I want to automatically insert in a word document as many hobbies as user types in . How may I go about doing this ?

CodePudding user response:

You can use the InputBox function available in VBA. But I think using a form with repetitive input boxes is not really a good decision. Instead, I'd suggest creating a task pane where users could enter the required data.

  • Related