I am using the following command to export data
DoCmd.TransferText acExportDelim, "HourSpec", "HoursData",
filename, True
When I run the query HoursData the following result is displayed on screen
Actual DOLLARS.INPUT 1000111TA 61056 01420000 d 20040011 15.50
but the actual text file looks like this
Actual,DOLLARS.INPUT,1000111TA,61056.00,01420000,s,20040011.00,22.50
Can anyone please let me know how I can get rid of the decimal places in 61056.00 and 20040011.00.
Thank you
Lakshmi.
DoCmd.TransferText acExportDelim, "HourSpec", "HoursData",
filename, True
When I run the query HoursData the following result is displayed on screen
Actual DOLLARS.INPUT 1000111TA 61056 01420000 d 20040011 15.50
but the actual text file looks like this
Actual,DOLLARS.INPUT,1000111TA,61056.00,01420000,s,20040011.00,22.50
Can anyone please let me know how I can get rid of the decimal places in 61056.00 and 20040011.00.
Thank you
Lakshmi.