Hello,
I'm trying to 'save as' a worksheet to a specific folder with date in the name. So, my filename is going to say "081921_Bill_Review", what I'm trying to do is if I run this Macro the same, I want excel to create another filer with maybe an additional letter with the date (for e.g: 081921A_Bill_Review), instead of overwriting the previous file.
wb.SaveAs "N:\Team\XYZ\00-Folders\Log" & "/" & Format(Date, "mmddyy") & "_" & "Bill_Review" & ".xlsx"
wb.Close True
Thank you!
I'm trying to 'save as' a worksheet to a specific folder with date in the name. So, my filename is going to say "081921_Bill_Review", what I'm trying to do is if I run this Macro the same, I want excel to create another filer with maybe an additional letter with the date (for e.g: 081921A_Bill_Review), instead of overwriting the previous file.
wb.SaveAs "N:\Team\XYZ\00-Folders\Log" & "/" & Format(Date, "mmddyy") & "_" & "Bill_Review" & ".xlsx"
wb.Close True
Thank you!