Thank you in advance for your advice.
I have a mature, existing continuous subform named ServicesSubTable subform supported by a query from table ServicesSubTable (I inherited the subfrm and table names!). The subfrm has the following controls with their table attributes: UniqueID (identifies a person, primary key, required, AutoNumber), DateOfService (required, Date), Service (required, text) ServiceType (required, text), ILSpecialistName (required, text).
My client has requested a new continuous subfrmTrsnMeetings that allows record add, update and deletes. They want the following controls with their table attributes: TrsnID (row ID, co-primary key, required, Number?), UniqueID (co-primary key, required, AutoNumber), TrsnMeetingDate (not required, Date), TrsnMeetingDateSpec (not required, Text), TrsnMeetingCompleted (not required, Date), TrsnMeetingCompletedSpec (not required, Text), TaskEmailSent (not required, Date), TaskEmailSentSpec (not required, Text), NextMeetingEmailSent (not required, Date), NextMeetingEmailSentSpec (not required, Text).
Here's the requirement that is also stumping me...they want only the TrsnMeetingDate and it corresponding TrsnMeetingDateSpec data on this subfrm to show up on the ServicesTable subfm, where the subfrmTrsnMeetings' Date value would be the ServiceSubTable DateOfService value, and the subfrmTrsnMeetings' subfrxxxSpec value would be the ServiceSubTable ILSpecialistName value, with Service = "Service", ServiceType = "Transition Meeting".
The client wants the subfrmTrsnMeetings fields/controls in this specific order in a row so a value for each field with can be added, deleted, or updated independently. Not every Date field with it's corresponding Spec (ILSpecialistName) field will be populated. The client wants the Date values and corresponding xxxSpec values for only the TrsnMeetingDate and it corresponding TrsnMeetingDateSpec to be reflected on the ServiceSubTable subform every time those values in the subfrmTrsnMeetings change.
My question: If I add the TrsnID field to the table ServicesSubTable is it even possible to use the table to store data for and populate the subfrmTrsnMeetings? And wouldn't the data only be added, deleted, or updated on the subfrmTrsnMeetings where the TrsnID would be incremented with vba code?