Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I wonder if it is possible to save a spreadsheet as the name displayed in
cell D1 (this is a 'reference' from another spreadsheet, ie, =customers!a2) and have it saved directly to a hard drive folder. For example: c:\my documents\orders Thanks! |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Dim s as String
s = Activesheet.Range("D1").Text Activeworkbook.SaveAs "C:\My documents\order\" & s & ".xls" -- Regards, Tom Ogilvy "Annette" wrote: I wonder if it is possible to save a spreadsheet as the name displayed in cell D1 (this is a 'reference' from another spreadsheet, ie, =customers!a2) and have it saved directly to a hard drive folder. For example: c:\my documents\orders Thanks! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Extract number from cell when specific format is found | Excel Worksheet Functions | |||
save workbook created from templete to a specific folder | Excel Discussion (Misc queries) | |||
Reference Cell if Found in a IF function | Excel Worksheet Functions | |||
How to save file to a specific folder? | Excel Discussion (Misc queries) | |||
Prgrammatically save a file to a specific folder on a network drive | Excel Programming |