Variables on 3 separate forms

  • Thread starter Thread starter rblivewire
  • Start date Start date
R

rblivewire

Basically I have variables on 2 separate forms that are supposed to
hold calculations taken from the form. How do I call these variables
(still holding the calculations) to show up on my third form?



Example:

First Form holds

'These are derived from values on the form
Public interestamt
Public balance
Public intrate


interestamt = balance * intrate


Third form
I need something like

me.interestamt.text(or is it value) = interestamt
 
Basically I have variables on 2 separate forms that are supposed to
hold calculations taken from the form. How do I call these variables
(still holding the calculations) to show up on my third form?



Example:

First Form holds

'These are derived from values on the form
Public interestamt
Public balance
Public intrate


interestamt = balance * intrate


Third form
I need something like

me.interestamt.text(or is it value) = interestamt


Me.interestamt.value = Forms!firstform.interestamt
 
Back
Top