Append input from one form to another

AmyLynnHill

Registered User.
Local time
Today, 14:33
Joined
Dec 7, 2005
Messages
81
Greetings,
I have a form(frmMainContacts) that has a field "notes". The form is attached to a table(tblMainContacts). I have tabs that have subforms,frmCalls set up in datasheet view. When the "notes" field is updated on the main form, I want it to send the note to the subform on a new line. Append the Note field information to the subform. I'm a new user of VB, I've tried to do this with an append query on the afterupdate event. However, it appends all the records in the main form and I only want it to append the record I'm on. Any suggestions?
 
you need to specify in the append query what record you are on, so you can do

yourrecordID= "the recordID that you are on on the form"

This should only do the record you are on
 
Thanks for the quick response. I must apologize for not understanding or not explaining well. Let me further explain.

I think I specified the record but not correctly. I have attatched a screen print of the query and the forms. The frmMainContacts form has a subform frmWithRequest, the tab "participant Calls" is a subform frmWithCalls, linked to the frmWithRequest subform by request ID, the Record source is the Calls Table.

At first I had the append query with forms![frmWithContacts]![PartNotes] in the notes field only. It appended one record to the calls table but didnt retain the SSN or request Id.....

Really appeciate the help.
 
Last edited:
Thanks for all your help! you were right, the referencing was incorrect for the subform.
 

Users who are viewing this thread

Back
Top Bottom