How do I create a macro to carry forward values from a subform?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am trying to create a form that has a subform that calculates total hours
for jobs. I would like to take the subtotal of the work performed and
transfer it to the main form, where it would be then transfered into a Table.
Is this even capable of being done?
 
Create a text box on the main form. The control source should be something
like

Forms![NameOfMainForm]![NameOfSubForm].Form![TotalHoursSFBox]
 
Back
Top