Stealth2016
New Member
- Joined
- Oct 26, 2016
- Messages
- 34
I have the following Macro that saves a file to a different location with the file name being what is in cell B7.
How do I get this to RUN whenever any method of Save is selected.
Code:
Sub FileSave ()
Dim FP As String, FN As String
FP = "Ë:\Quotes\"
FN = Range("B7").Value
ActiveWorkbook.SaveAs filename:= FP & FN & ".xls"
End Sub
How do I get this to RUN whenever any method of Save is selected.