Repost: How? to have data from form 1 show up on form 2

  • Thread starter Thread starter Jill
  • Start date Start date
J

Jill

on form 1 i have calulations that are done and the result
is in text box 5. i need the info from text box 5 to go to
form 2 text box 7 so form 2 can finish it's calulations
and give me my final answer that will be at the end of
form 2 please show all expressions i need to type in for
this to happen thank you
 
Hi Jill,
Try this. In the After Update event of textbox5 put:

Forms!Form2!textbox7 = me!textbox5

The Easy Day
 
You need to build the code in the event procedure of the
calling form. Hope you know VBA-this is a basic example
in any VBA book.
 
Back
Top