G Guest Oct 3, 2005 #1 How can I export a table or query with the current date appended to the end or beginning of the file name?
How can I export a table or query with the current date appended to the end or beginning of the file name?
A Amy Blankenship Oct 3, 2005 #3 I think you'd need Replace("/", "_", Format(Date,"Short Date")) & ".ext", since you can't have a forward slash as part of a file name. HTH; Amy
I think you'd need Replace("/", "_", Format(Date,"Short Date")) & ".ext", since you can't have a forward slash as part of a file name. HTH; Amy
G Guest Oct 25, 2005 #4 My question is similar to this but I am trying to add the file extension using TransferSpreadsheet in macros. Is there a way to do this? Can someone walk me through doing it another way (keeping in mind my skilss are decent but not expert!).
My question is similar to this but I am trying to add the file extension using TransferSpreadsheet in macros. Is there a way to do this? Can someone walk me through doing it another way (keeping in mind my skilss are decent but not expert!).
G Guest Oct 25, 2005 #5 You are correct, Amy. I did not stop to think about that. Thanks for the catch.