I have the following Macro that saves a file to a different location with the file name being what is in cell B7.
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...