Have two tables that I want to append fields from a null table into master table. Basically trying to insert fields in master table to keep from typing them in everytime. This mdb is already created but there are fields that are left out and needed for queries that are imported in at a later time to extract data from master table and other tables in mdb. Have to type fields in master table for queries to run everytime and I have no control on orginal mdb that is sent to me.
Tried this as append query
INSERT INTO Master ( emprret, emprdisab, emprlife, emprhelth, emprmedi, emprdentl, emprptbsav )
SELECT Appendfields.emprret, Appendfields.emprdisab, Appendfields.emprlife, Appendfields.emprhelth, Appendfields.emprmedi, Appendfields.emprdentl, Appendfields.emprptbsav
FROM Appendfields;
But error unknown field happens everytime. Any suggestions to work aroud this to keep from typing in fields everytime.
Tried this as append query
INSERT INTO Master ( emprret, emprdisab, emprlife, emprhelth, emprmedi, emprdentl, emprptbsav )
SELECT Appendfields.emprret, Appendfields.emprdisab, Appendfields.emprlife, Appendfields.emprhelth, Appendfields.emprmedi, Appendfields.emprdentl, Appendfields.emprptbsav
FROM Appendfields;
But error unknown field happens everytime. Any suggestions to work aroud this to keep from typing in fields everytime.