table naming when exporting from macro

icli

New member
Local time
Today, 09:56
Joined
Jan 5, 2010
Messages
4
I am doing a Transfer Text, Transfer Type: Export Fixed Width. I would like the table name to include the current date (and time if possible). Is there a way in the macro to format the table name with the date and time?
 
Welcome to AWF,

you should be able to calculate the file name in the TransferText macro action with a formula like this:
=Format(Date();"yyyymmdd") & "_Filename.txt"

Check the help on the Format() function to determine the date/time format string you need.

HTH
Thomas
 

Users who are viewing this thread

Back
Top Bottom