Thread
:
File save as cell value
View Single Post
#
3
Posted to microsoft.public.excel.misc
Don Guillett
external usenet poster
Posts: 10,124
File save as cell value
Sub Macro8()
v1 = Range("a1")
v2 = Range("a2")
ActiveWorkbook.SaveAs Filename:="C:\yourfolder\" & v1 & v2 & ".xls"
End Sub
--
Don Guillett
Microsoft MVP Excel
SalesAid Software
"Tony. D" <Tony.
wrote in message
...
I want to set up a Save As macro button to to save a file as "cell
value".xls. It should have the File Save As box appear with the follwing:
i.e. Cell A1 - MortgageNo
Cell A2 - 12345678
filename = MortgageNo12345678.xls
Can anyone help me out?
Reply With Quote
Don Guillett
View Public Profile
Find all posts by Don Guillett