Yes. Main form based on Parent Table one to many Children. Subform based on
Child Table.....Child table has a Date field and three descriptor fields.
When I update test results on each parent the subform records the new data
and displays the test result history on the main form. Specifically when a
new record is entered on the subform I would like to have the new entry for
the date field also either displayed in a control on the main form and/or
moved into a field in the Parent table. This way I can preserve a large
number of reports and macros for sending the reports that I have made.
I guess I don't understand. You want to store (I presume) multiple
records of history in one record on the mainform? Or you want to store
(redundantly) the latest date on the "many" side table in the main
table?
You can *display* the most recent date in the related table on the
mainform using a textbox with a recordsource such as
=DMax("[datefield]", "[child-table-name]", "[ID] = " & [txtID])
where txtID contains the main table's linking field and ID is the
foreign key in the child table.
John W. Vinson[MVP]