Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
In a workbook, on worksheet Sheet 1, in Cell A1 I have a value. Let's say
the value is the word "timesheet". How do I save the workbook with the filename "timesheet"? Generically, how do I save a workbook to a filename, where the filename is the value in a defined cell on a defined worksheet in the workbook. -- Bill |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() a macro like: Sub Macro1() ActiveWorkbook.SaveAs _ Filename:=Range("E1").Value, _ FileFormat:=xlWorkbook, _ Password:="", _ WriteResPassword:="", _ ReadOnlyRecommended:=False, _ CreateBackup:=False End Sub should get you started... -- protonLeah ------------------------------------------------------------------------ protonLeah's Profile: http://www.excelforum.com/member.php...o&userid=32097 View this thread: http://www.excelforum.com/showthread...hreadid=533067 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Save As from chart sheet | Charts and Charting in Excel | |||
macro save a workbook whilst increasing file no | Excel Worksheet Functions | |||
Save as Msg box | Excel Discussion (Misc queries) | |||
Save as Msg box | Excel Discussion (Misc queries) | |||
Save & Save As features in file menu of Excel | Excel Discussion (Misc queries) |