saveas ActiveWorkbook.SaveAs Filename:=Range("A1").Value

D

DarrenL

I need to put a specific folder in here.
ActiveWorkbook.SaveAs Filename:=Range("A1").Value
Desktop\xxxxxxx\xxxxxxxxx range (A1)
Thanks
Darren
 
J

Jacob Skaria

strPath = "c:\"
ActiveWorkbook.SaveAs Filename:=strPath & Range("A1").Value

If this post helps click Yes
 
J

Jacob Skaria

strPath = "c:\"
ActiveWorkbook.SaveAs Filename:=strPath & Range("A1").Value

If this post helps click Yes
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top