griffins69
griffins69
- Local time
- Today, 04:12
- Joined
- Apr 15, 2010
- Messages
- 18
I'm trying to import a txt file with 24 columns into a table with 25 columns. Then I would like to update the one empty column with a string 3 characters long.
I will be importing 5 different files into this table and I will need to update that blank column with 5 different 3 character strings.
I currently use "Docmd" below, but now that I added a column I assume I need another method.
DoCmd.TransferText acImportDelim, Import_Specs, tableName, FileName, True
I will be importing 5 different files into this table and I will need to update that blank column with 5 different 3 character strings.
I currently use "Docmd" below, but now that I added a column I assume I need another method.
DoCmd.TransferText acImportDelim, Import_Specs, tableName, FileName, True