I have created an append query to add data to my table tbl2GrantTrainers which has only two fields (GrantID ; TrainerID)
the append query is set up as follows:
field: ID
table: tbl1Grants
Append to: GrantID
Criteria: [Forms]![frmAddNewGrant]![ID]
field: ProviderID
table: tbl1TrainingProviders
Append to: TrainerID
Criteria: [Forms]![frmAddClassesToGrant]![cboTrainingProvider]
I get no error on the query, also have stepped through code and it executes the line of DoCmd.OpenQuery aqryAddTrainerToGrant but it does not actually add anything to the table. I know it is probably something simple that I am missing. Any help would be greatly appreciated.