below I have a code for saving file as...however, I need to name the file with the vale from cells A10, B3 and B4. I tried to add there:
InitialName = Range("A1") & "" & Range("B1") & "" & Range("C1")
Unfortunately it never worked for me.
Sub filesave()
Dim bFileSaveAs As Boolean
bFileSaveAs = Application.Dialogs(xlDialogSaveAs).Show
If Not bFileSaveAs Then MsgBox "User cancelled", vbCritical
End Sub
EDIT: I would need a suggested name in the "Save as" dialog box based on values from A10 & B3 & B4.