All,
I have the following code to insert records into temporary tables on the client.
DoCmd.RunSQL "DELETE * FROM tblTEMPNTCChild;"
strSQL = ""
strSQL = "SELECT tblNTCChild.NTCChildID, "
strSQL = strSQL & "[1stForename], "
strSQL = strSQL & "[2ndForename], "
strSQL = strSQL & "Surname, "...