Sep 8, 2003 #1 Nene75 Programmer Feb 27, 2003 138 US hi everyone, I am using MS Access 2000. Is there a way to convert Access table into .csv (comma seperated Values) format using Macro or VBA? Any help provided would be appreciated. Thanks!
hi everyone, I am using MS Access 2000. Is there a way to convert Access table into .csv (comma seperated Values) format using Macro or VBA? Any help provided would be appreciated. Thanks!
Sep 9, 2003 #2 GHolden Programmer May 28, 2002 852 GB Hi, You can export a table to csv format using the TransferText comand. eg. DoCmd.TransferText acExportDelim, , "tblName", "C:\Test.csv" Exports table 'tblName' to 'C:\Test.csv' as comma delimited. See Access Help on TransferText for more information. There are two ways to write error-free programs; only the third one works. Upvote 0 Downvote
Hi, You can export a table to csv format using the TransferText comand. eg. DoCmd.TransferText acExportDelim, , "tblName", "C:\Test.csv" Exports table 'tblName' to 'C:\Test.csv' as comma delimited. See Access Help on TransferText for more information. There are two ways to write error-free programs; only the third one works.