Saving file in the format "YYMM"

G

Guest

Hi,

I am trying to get a macro to extract a date from a cell (A1), then save the
file in the format "YYMM Forecast".

May I know what is the code I should type in?

I tried the following but it doesn't work:

Dim myMonth as String
Dim myFileName as String

myMonth = Format("H71:J71", "yymm")
myFileName = "C:\" & myMonth & " Forecast.xls"

ActiveWorkbook.SaveAs Filename:=myFileName, FileFormat:=xlWorkbookNormal

Thanks.
 
D

Dave Peterson

And why do you have 3 cells in your range:

myMonth = Format("H71:J71", "yymm")

That may affect the answer.
 

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