S
Stephen sjw_ost
Hello again,
I am trying to turn this code;
DoCmd.TransferText acExportFixed, "Excludes", "t_ACCT_NUMtemp", _
"\\nsusfla90ce01\cost$\OST\Procedures\Scrub_PrivateLabel\Exclusions\Excludes.txt", True, ""
into this code;
DoCmd.TransferText acExportFixed, "Excludes", "t_ACCT_NUMtemp", _
"\\nsusfla90ce01\cost$\OST\Procedures\Scrub_PrivateLabel\Exclusions\" &
"Excludes_" & Format(Date, "mmddyy") & ".txt"", True, """
but everytime I do I get an error msg;
"Cannot update. Database or object is read-only."
How can I make the output of my text file export the file name with todays
date in the file name? i.e. Excludes_102809.txt
Any help is greatly appreciated.
I am trying to turn this code;
DoCmd.TransferText acExportFixed, "Excludes", "t_ACCT_NUMtemp", _
"\\nsusfla90ce01\cost$\OST\Procedures\Scrub_PrivateLabel\Exclusions\Excludes.txt", True, ""
into this code;
DoCmd.TransferText acExportFixed, "Excludes", "t_ACCT_NUMtemp", _
"\\nsusfla90ce01\cost$\OST\Procedures\Scrub_PrivateLabel\Exclusions\" &
"Excludes_" & Format(Date, "mmddyy") & ".txt"", True, """
but everytime I do I get an error msg;
"Cannot update. Database or object is read-only."
How can I make the output of my text file export the file name with todays
date in the file name? i.e. Excludes_102809.txt
Any help is greatly appreciated.