Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.
Originally posted by: stonysmithIf I may, I would like to add one word of warning below.. please IGNORE this if you're only running only the desktop version of our software.
===========================
IF you move up to our Enterprise software, and IF you start executing graphs "in batch", then the {{^CurrentDate^}} parameter will not be good for you.
When you generate a BRX (required for batch execution) then the {{^CurrentDate^}} parameter is hard-coded into the BRX and becomes useless for a "daily" operation.
You'll have to go about this another way: What I've done several times is write the XLS out as something like TemporaryFileName.XLS and then used the moveFile() function to rename the file such that I can add the date in the middle the filename.
as in:
moveFile("TemporaryFileName.XLS","<myFileName>_" + str(date()) + ".XLS")