Hi all,
I currently use the code below to save an Excel spreadsheet as a csv.
However, a user now requires the file to be saved with todays date added onto the end of the filename.
i.e. POHDR06-02-06.csv
Whats the best way to go about this?
Thanks in advance,
Woody
I currently use the code below to save an Excel spreadsheet as a csv.
Code:
ActiveWorkbook.SaveAs Filename:= _
"J:\Projects\Great Plains\POHDR.csv", FileFormat:=xlCSV, _
CreateBackup:=False
However, a user now requires the file to be saved with todays date added onto the end of the filename.
i.e. POHDR06-02-06.csv
Whats the best way to go about this?
Thanks in advance,
Woody