I have an append query to populate a table from a couple of key reports in excel - it performs a few calculations and lookups during the import. Everything imports as it should but there is one field that does not get populated. The data shows on the query preview, but does not transfer to the table when executed. The field looks up on an open hidden form for a userID.
The date/time comes in fine as well as all other data. It is only the NetID from the form that fails to import, but shows on the query preview. Any ideas?
Thanks
Richard
Code:
INSERT INTO tblKE5Ztemp(....[NetID-Imported], [Date/Time-Imported])
SELECT DISTINCT.....[Forms]![frmUSL]![txtNetID] AS [NetID-Imported], Now() AS [Date/Time-Imported]
The date/time comes in fine as well as all other data. It is only the NetID from the form that fails to import, but shows on the query preview. Any ideas?
Thanks
Richard