***SOLVED*** see end of thread
Three tables:
1) People with all the usual demographic fields plus a "Selected" field
2) Groups: ID, GroupName
3) PeopleXGroups: PeopleID, GroupID
I have first set all "Selected" field in table 1 to False
I need to create an update query that sets the "Selected" field in table 1 to TRUE for all rows in the subquery: PeoplerXGroups INNER JOIN People ON PeopleXGroups.PeopleID = People.ID WHERE PeopleXGroups.GroupID=Forms!frmMainMenu!cboGroups.Column(0)
The end goal is to make table 1 available for Word Mail Merge where only the people from the combobox selected group have their "Selected" field marked as true.
Three tables:
1) People with all the usual demographic fields plus a "Selected" field
2) Groups: ID, GroupName
3) PeopleXGroups: PeopleID, GroupID
I have first set all "Selected" field in table 1 to False
I need to create an update query that sets the "Selected" field in table 1 to TRUE for all rows in the subquery: PeoplerXGroups INNER JOIN People ON PeopleXGroups.PeopleID = People.ID WHERE PeopleXGroups.GroupID=Forms!frmMainMenu!cboGroups.Column(0)
The end goal is to make table 1 available for Word Mail Merge where only the people from the combobox selected group have their "Selected" field marked as true.
Last edited: