Hi,
Please help me to solve this problem.
I have 500 access files which have each only 1 table and same format. The file name is the ShopID (primary key) and locate at the same folder. I would like to combine all 500 files to 1 file.
Do not use Make Table on All. this will just put 500 tables in the single file. If the Tables are all the same structure, you will want to (carefully!) concatenate them. This, of course, is hazzardours, as there may be duplicates and near duplicates. you probably want to copy ONE of the 500, create an (autonumber or guid) PK and append the remainder. Then chaek for dups / unwanted records (probably the most difficult part).
Good and obvious point by MR i should have mentioned. Perhaps create a mimic of the table structure with no keys or indexes to append all the data first.
Then look for some help on removing duplicates. i focussed more on the over all challenge of getting 500 files into one. Good luck fella, sorry for missing that important note.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.