when i try to do this:
DoCmd.TransferText acExportDelim, “”, “RUGItemChangeTable”, FilePath & “MLRAMLRA_Changes.xls”, True, “”
i get the error “Database or Object is read-only”
I can get the data out using
DoCmd.OutputTo acTable, “RUGItemChangeTable”, “MicrosoftExcelBiff8(*.xls)”, FilePath & “MLRAMLRA_Changes.xls”, False, “”, 0
in other news, this works:
DoCmd.TransferText acExportDelim, , “EditMDS”, FilePath & “MLRAMLRA.txt”, True
Weird! I’d like to use transfer text as there is a (somewhat remote) chance that the data could exceed the row amount in Excel (2003).