Format Date Time yyyymmdd_hhmmss
Greetings, I am having an issue with a date-time format when save a csv file.
The filename should be like "Summary_20231103_082637".
formattedDate = Format(Today(), "yyyymmdd_hhmmss");
filename = Convert File Path("C:\Path\Summary_" || formattedDate || ".xlsx", absolute );
if(File Exists (filename),
dt << Save (filename, Mode("Append")),
dt << Save (filename));
I tried to format the datetime with
formatDa...