Hi,
I know this has been answered in different ways , but I still can't figure it out.
I want to save "Dashboard-Template" to "Dashboard-11-30-05" it is in the same directory. In cell "B3" of my Instruction sheet in my workbook the user can update the date, and I want the Macro to use that cell. I have recorded the following Macro but how do I refer th the cell "B3"?
Sub Save()
'
' Save Macro
' Macro recorded 11/30/2005 by CONMHI
'
'
ChDir "S:\Acctg\CGIT\Management Summaries\FY2006"
ActiveWorkbook.SaveAs filename:= _
"S:\Acctg\CGIT\Management Summaries\FY2006\DashBoard-Template.xls", FileFormat:=xlNormal _
, Password:="", WriteResPassword:="", ReadOnlyRecommended:=False, _
CreateBackup:=False
End Sub
"S:\Acctg\CGIT\Management Summaries\FY2006\DashBoard-Template.xls", This is where I want it to say Dashboard-B3
Thanks
I know this has been answered in different ways , but I still can't figure it out.
I want to save "Dashboard-Template" to "Dashboard-11-30-05" it is in the same directory. In cell "B3" of my Instruction sheet in my workbook the user can update the date, and I want the Macro to use that cell. I have recorded the following Macro but how do I refer th the cell "B3"?
Sub Save()
'
' Save Macro
' Macro recorded 11/30/2005 by CONMHI
'
'
ChDir "S:\Acctg\CGIT\Management Summaries\FY2006"
ActiveWorkbook.SaveAs filename:= _
"S:\Acctg\CGIT\Management Summaries\FY2006\DashBoard-Template.xls", FileFormat:=xlNormal _
, Password:="", WriteResPassword:="", ReadOnlyRecommended:=False, _
CreateBackup:=False
End Sub
"S:\Acctg\CGIT\Management Summaries\FY2006\DashBoard-Template.xls", This is where I want it to say Dashboard-B3
Thanks