Hi all
I regularly want to link a number of CSV files. Using VBA, I can import specified file names using
DoCmd.TransferText acLinkDelim, , "Baseline_001", "C:\Baseline_001.csv"
DoCmd.TransferText acLinkDelim, , "Baseline_002", "C:\Baseline_002.csv"
etc.
In order to extend this, I created...