I've tried to include the following code along side strDestName so that it saves the workbook as today's date using
& " " & Format(Now(), "dd-mm-yy")
but there must be a syntax error somewhere.
Here's the original code
Dim strDestName As String: strDestName = "SaveTest.xlsx"
Dim strDestPath As String: strDestPath = Environ("UserProfile") & "\Desktop\"
Application.ScreenUpdating = False
Dim wbSource As Workbook: Set wbSource = ActiveWorkbook
Dim wsActive As Worksheet: Set wsActive = wbSource.ActiveSheet
Dim wbDest As Workbook: Set wbDest = Workbooks.Add
wbDest.SaveAs Filename:=strDestPath & strDestName
Eventually, what I'd like to acheive is for the strDestName to be named with the text input by the user into a particular cell or better still a text box control, followed by todays date.
As I only have a basic grasp of coding, VBA, if anyone is kind enough to help out it would be great if comments were added into the coding with a brief explanation of what the codes doing.
Bookmarks