I need to create a macro for saving three values from the active worksheet for the file name.
Below is the current code which pulls only one value (however I need three):
SaveAsNameDateScore ()
ThisFile = Range (“C18”).Value
ActiveWorkbook.SaveAs FileName:=ThisFile
EndSub
I would like to have the file name reflect the values from cell B5, B2, and C18 together.
Below is the current code which pulls only one value (however I need three):
SaveAsNameDateScore ()
ThisFile = Range (“C18”).Value
ActiveWorkbook.SaveAs FileName:=ThisFile
EndSub
I would like to have the file name reflect the values from cell B5, B2, and C18 together.