
Originally Posted by
June7
So have you attempted one of the 3 options described in post 2 to accomplish import of 1 file?
If you want VBA to cycle through the files in a specified folder and automatically import all csv files and then update the additional tickername field, that can all be accomplished. These techniques have been discussed in numerous forum threads.
How the files are grabbed depends on how the file names are known. You say the file names are a standard structure with a numeric suffix. The suffix can be provided by user entry to a textbox. Then code can reference the textbox. Example for option 1:
DoCmd.TransferText acImportDelim, "YourCustomSpecificationName", "tblImport", "C:\SomeFolder\DataFile" & Me.textbox & ".csv", False