[quote=“Joseph_Seddik”]
Timestamp: NOW()
Filename: [key] & [Timestamp] & “.pdf”
[/quote]
Correct! That is similar to what I was referring to in option one.
However, unless something has changed, you can’t just tack on NOW(). The colons are automatically replaced with a “/”, so when attempting to access the file, the systems thinks in resides in extra non-existent folders.
To correct for this, use the SUBSTITUTE() function to replace the colons. in the example below, I replace them with “_”:
SUBSTITUTE((CONCATENATE(IF([Paid?] = "Yes", "PaidInvoice_", "Invoice_"), [Order #], "_", YEAR(TODAY()),
INDEX(LIST("01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12"),MONTH(TODAY())),
DAY(TODAY()), "_", TIMENOW())), ":", "_")
The resulting filename will look like this:
Invoice_f3d7e048_20220118_12_46_30