
Originally Posted by
June7
The real trick is figuring out what event(s) to put code into.
Will also need the code in the cboCoName AfterUpdate or the contact comboboxes GotFocus event, only without the NewRecord condition.
Your code is filtering on the CoName but value of cboCoName is CompanyInfoID
Me.cboCoContact1.RowSource = "SELECT ID, CoContactLN & ',' & ' ' & CoContactFN AS CoContact1 FROM tblCoContacts WHERE ContactCo = " & Me.cboCoName & ";"
I recommend the GotFocus.
Also, in cboCoName AfterUpdate event, might want to set the contact comboboxes to Null.