Click here to Skip to main content
15,920,111 members

Comments by Runner55Code (Top 16 by date)

Runner55Code 2-Dec-13 8:28am View    
I'll search Google for how to read the table names and loop through. I'm good with Access weak in VBA.
Runner55Code 2-Dec-13 8:26am View    
You are right. Simplified it and made it a question. Thanks.
Runner55Code 23-Nov-13 12:32pm View    
INSERT INTO tblDataMaster
(
IDNumber,
[Date],
Firstname,
Lastname
)
SELECT
tblDataMaster.IDNumber,
tblDataMaster.Date,
tblDataMaster.Firstname,
tblDataMaster.Lastname
FROM tblDataMaster;

Now...how do I take this query so I can run if from a module?
Runner55Code 23-Nov-13 12:28pm View    
Yes...I have an append query that pulls files with a date on the back end (...on the back end of the file name). I want to write in vba (...Access code) and change it a little so I don't have to type in the new file name (...because of the date at the end of file) every time I run it. Then run a module (...or whatever) to append the new data to the master table. I'm shocked at how "help" web sites can make the simplest thing so complex.
Runner55Code 23-Nov-13 10:52am View    
Thank you for your response but it doesn't really answer the question. I need to know how to add the Filename and DateTime on each import.