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

T

Tanyhart

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?
 
W

Wayne-I-M

Create a text box on the main form. The control source should be something
like

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