Ok heres the thing.
I have 2 tables
tblTempImport
tblArchive
(both have a field called "AccountNumber")
Both table structures are identical (good ol copy and paste)
What I have in these tables are lists of Account Numbers.
A file is imported into tblTempImport
and then transfered into tblArchive
What I need to do is to extact (hopefully into an array)
all the account numbers from tblImport WHERE
The Account Number in tblImport EXISTS in tblArchive &
The Account Number in tblImport DOESNT EXIST in tblArchive.
Does anyone have a DAO solution or anything so I can
get these lists into an array?
Just to clear things up at the start.
Knocking out the duplicates is not a problem, I really do need the lists of account numbers returned to an array.
Cheers Homer
I have 2 tables
tblTempImport
tblArchive
(both have a field called "AccountNumber")
Both table structures are identical (good ol copy and paste)
What I have in these tables are lists of Account Numbers.
A file is imported into tblTempImport
and then transfered into tblArchive
What I need to do is to extact (hopefully into an array)
all the account numbers from tblImport WHERE
The Account Number in tblImport EXISTS in tblArchive &
The Account Number in tblImport DOESNT EXIST in tblArchive.
Does anyone have a DAO solution or anything so I can
get these lists into an array?
Just to clear things up at the start.
Knocking out the duplicates is not a problem, I really do need the lists of account numbers returned to an array.
Cheers Homer