Okay, got it. In the click event of the button you want to populate the
fields on the main form do this:
Me!MySubForm.SetFocus
DoCmd.GoToRecord , , acLast
Me.SetFocus
Me!SomeField = Me!MySubForm!SomeField
...etc...
Hi!
I'm not sure I understand. To get a report showing only the last entry in a
subform plus the description of the main record in the main table, would I
not have to make up a query of some sort? Or would the above do that? I'm
not sure but it seems that we're dealing with the main form and not a
report?? Forgive me if I've misunderstood.
.........................................
I'm thinking that since a 'picture paints a thousand words', that a
screenshot would be easier to deal with in this case. If you would, pls see
this graphic with dummy information:
http://www.angelfire.com/art2/hypatia/Access2000_example_record_with_tracking_subform.gif
that shows one record from the main table along with the tracking subform
information for this record, DocketID # 2194.
The report I need to create would be one that lists all records in the main
table, i.e., dockets #1 to 2400+, whatever # we're at, that are still open.
The report would list by docket # (DocketID) and would have the subject for
each docket from the main table (i.e., "Letter to MP" here), but would take
only the last line from the tracking subform as management wants to know
only the status of each outstanding docket. The difficulty is that the
tracking subform for each docket ID may have as little as 2 lines up to at
least 20 or so. So, as an example, for docket #2194 here, the last entry in
the tracking subform is the one that says docket is with "Heather" and
"given for Director's approval" so for docket 2194, only that line should
appear in the report.
I think this screenshot should help tremendously as it's obvious I'm not
doing a good job of explaining <g>. I didn't know if I could access this
website from the office as they often block these types of sites, so glad
there was no problem. Also, the graphic has mostly bogus information with a
lot of the form erased from this screenshot, so we're okay there, too <g>.
Thanks in advance!

D