dS, if you want to capture that 1st row of data, change your import specification so that it doesn't expect fieldnames (not sure if you've done that). If that imports ok then do the following:
in the loop retrieving the files in the folder:
- Use a delete query to empty the import table
- Import the file into this table using the import spec
- Use a query to add the date (maybe into another tempory table using a Make Table Query)
- Append this table to another table that will hold all the data
something like that! Just tried the import part and it worked fine (1st row is in data)
in the loop retrieving the files in the folder:
- Use a delete query to empty the import table
- Import the file into this table using the import spec
- Use a query to add the date (maybe into another tempory table using a Make Table Query)
- Append this table to another table that will hold all the data
something like that! Just tried the import part and it worked fine (1st row is in data)
Last edited: