SaveAs (Archive)

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

To be more specific; I would like replace Master with the value of cell H4 which is Week Start Date in long date format
Thanks in advance

Private Sub ok1_Click(
ChDir "C:\
ActiveWorkbook.SaveAs Filename:="C:\Master.xls
Unload M
End Su
 
Private Sub ok1_Click()
ChDir "C:\"
ActiveWorkbook.SaveAs Filename:="C:\" & Format(Range("H4"), "yyyy mm
dd") & ".xls"
Unload Me
End Sub


--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)

duncan said:
To be more specific; I would like replace Master with the value of cell H4
which is Week Start Date in long date format.
 

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