Okay I need a little bit of help with this cause I just can't figure it out.
I am using this code to get my save as dialog to pop up which asks for a file name.
But what I would like to have happen is the Save as box pop up with with this in the save as area:
That way each week when the user saves the spreadsheet all they have to do is double check the name and click okay with out having to edit and type out another long name.
Can anyone help me out?
I am using this code to get my save as dialog to pop up which asks for a file name.
Code:
With Application.Dialogs(xlDialogSaveAs).Show
End With
But what I would like to have happen is the Save as box pop up with with this in the save as area:
Code:
ThisWorkbook.Name & "(" & Sheet1.Range("C4") & " " & Sheet1.Range("E4") & ")"
That way each week when the user saves the spreadsheet all they have to do is double check the name and click okay with out having to edit and type out another long name.
Can anyone help me out?