Saving file in the format "YYMM"

D

Dolphinv4

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.
 
Top