I have a table (TableA) of contacts that i am uploading from Excel.
One column is called 'Sector'.
The field in Excel contains a Sector name which i want to include in the Access Record, but if the record appears on several Excel sheets, sometimes with the same Sector, i get repition of Sector in that field. It should only appear once.
At the moment, i upload to a temp table (TableB).
I have a 3rd table (TableC)
An append query concatenates TableA, a semi-colon, and TableB into TableC .
An update query then updates tableA to the values in TableC.
I can't seem to get criteria to check if Sector in TableB already exists in TableA, if so skip, else add with simicolon.
Any ideas or help would be much appreciated.
One column is called 'Sector'.
The field in Excel contains a Sector name which i want to include in the Access Record, but if the record appears on several Excel sheets, sometimes with the same Sector, i get repition of Sector in that field. It should only appear once.
At the moment, i upload to a temp table (TableB).
I have a 3rd table (TableC)
An append query concatenates TableA, a semi-colon, and TableB into TableC .
An update query then updates tableA to the values in TableC.
I can't seem to get criteria to check if Sector in TableB already exists in TableA, if so skip, else add with simicolon.
Any ideas or help would be much appreciated.
Comment