I exported an Access table to a csv file using:
cn.Execute "Select * INTO [TEXT;HDR=NO;DATABASE=C:\].tempform.TXT from tmptable1 "
Below is a sample output. How can I export it without the double-quote?
"0001","7500","FY11","Apr"," "," "," ","5.14810"
"0001","7500","FY11","Aug"," "," "," ","5.64386"
"0001","7500","FY11","Feb"," "," "," ","4.80772"
"0001","7500","FY11","Jan"," "," "," ","5.04811"
"0001","7500","FY11","Jul"," "," "," ","5.15309"
"0001","7500","FY11","Jun"," "," "," ","5.39846"
Any help will be greatly appreciated.
cn.Execute "Select * INTO [TEXT;HDR=NO;DATABASE=C:\].tempform.TXT from tmptable1 "
Below is a sample output. How can I export it without the double-quote?
"0001","7500","FY11","Apr"," "," "," ","5.14810"
"0001","7500","FY11","Aug"," "," "," ","5.64386"
"0001","7500","FY11","Feb"," "," "," ","4.80772"
"0001","7500","FY11","Jan"," "," "," ","5.04811"
"0001","7500","FY11","Jul"," "," "," ","5.15309"
"0001","7500","FY11","Jun"," "," "," ","5.39846"
Any help will be greatly appreciated.