I can export a table (or query) to a local csv file using the wizard but if I use a macro or VBA I receive the error
I have seen treads from people who can and cannot get this to work. For my users the wizard using saved specifications is too confusing.
I tried this code from another thread with the same results.
What else can I try?
If I could NOT export manually it would be one thing but this is only when automated.
Thanks
Code:
error 3027 "cannot update, database or object is read only"
I have seen treads from people who can and cannot get this to work. For my users the wizard using saved specifications is too confusing.
I tried this code from another thread with the same results.
Code:
Sub transfercsv()
DoCmd.TransferText acExportDelim, , "Tbl_charts", "c:\charts.csv", True
End Sub
What else can I try?
If I could NOT export manually it would be one thing but this is only when automated.
Thanks