Hi,
I want at a click of a button, to copy a file and rename it with Todays date.
C:\FILES\ALLOC.csv
C:\FILES\ALLOC191109.csv
I've got the FILECOPY code working:
Private Sub rename_Click()
FileCopy "C:\FILES\ALLOC.CSV", "C:\FILES\ALLOC191109.csv"
End Sub
but I've tried adding the...