naming .xls file based on a cell in excel

L

lsu-i-like

when i hit save as, i would like excel to refer to a certain cell on m
spreadsheet to name the spreadsheet file. is there a way to do this
 
P

Piranha

lsu-i-like said:
when i hit save as, i would like excel to refer to a certain cell on my
spreadsheet to name the spreadsheet file. is there a way to do this?
Isu,
With a macro,
Something like;
Asumimg cell you want to use is B2.
Subsitute your path to where you want the file to be saved.

Sub SaveAsFileName()
ActiveWorkbook.SaveAs Filename:="C:\Documents and
Settings\Owner\Desktop\" & Range("B2").Value & ".xls"
End Sub

Dave
 
Top