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

  • Thread starter Thread starter DarrenL
  • Start date Start date
D

DarrenL

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

If this post helps click Yes
 
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

Back
Top