Data Entry - Detail - Reset?

  • Thread starter Thread starter Jason Gyetko
  • Start date Start date
J

Jason Gyetko

I have a data entry form with some fields in the form header and a couple in
the detail. When a new record in added in the detail, it keeps the running
list of all records you added. How do I reset that detail list when an
update is made to the field in the header section? Thanks.
 
Your description is a little vague, so I'll try to answer
what I think you're looking for...:)

It sounds like you have a form where you do your data
entry, and a subform that shows the records you've added.
To reset this 'detail list' you need to add some
code....perhaps to a 'Save' button. The code will look
like:


me.NameofSubform.requery
 
Back
Top