Variable Difficulties

  • Thread starter Thread starter Truly
  • Start date Start date
T

Truly

Okay, so I've created Form1, Form2, Form3, and Form 4.
Each with 4 created command buttons. So I have two
questions:

1) How do you made a box where someone can insert a value.
2) The value that is typed in Form1, I would like for it
to be remembered until I finish clicking and entering the
values in form2, form3, and form4. Then from there have
all 4 values generated in a userform and report in form5.
How do I make this possible?

Thank you for your time.
 
The box you want is probably a Text box
To make the value available to the other forms just do

=Forms!Form1!textbox1

and so on. . .
 
Back
Top