Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have a list of doctors that I need to create templates for and then
refresh the background query (the spreadsheet is linked to SQL) . I have the logic worked out, the only problem that I am having is that when it comes to saving the file name, I have the doctors name in Cell A5, this is a dynmic field based on the query, how I do fix the following line of code to tell it to look at A5 for the file name? I thought I would be able to copy from cell A5 and paste it into the file name, but that is not working, any other suggestions? The line of code to save the workbook is: ActiveWorkbook.SaveAs Filename:= _ "C:\Documents and Settings\Richard Sabbara\Desktop\Range('C1')", FileFormat _ :=xlNormal, Password:="", WriteResPassword:="", ReadOnlyRecommended:= _ False, CreateBackup:=False Any help is greatly appericated. Richard |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Dim Path As String Path=""C:\Documents and Settings\Richard Sabbara\Desktop\ With ActiveWorkbook .SaveAs Filename:=Path & .Worksheets("WhichSheet").Range("C1").Value & ".xls", _ FileFormat:=xlNormal, _ Password:="", _ WriteResPassword:="", _ ReadOnlyRecommended:=False, _ CreateBackup:=False Obviously change 'WhichSheet" to worksheet in question. NickHK wrote in message oups.com... I have a list of doctors that I need to create templates for and then refresh the background query (the spreadsheet is linked to SQL) . I have the logic worked out, the only problem that I am having is that when it comes to saving the file name, I have the doctors name in Cell A5, this is a dynmic field based on the query, how I do fix the following line of code to tell it to look at A5 for the file name? I thought I would be able to copy from cell A5 and paste it into the file name, but that is not working, any other suggestions? The line of code to save the workbook is: ActiveWorkbook.SaveAs Filename:= _ "C:\Documents and Settings\Richard Sabbara\Desktop\Range('C1')", FileFormat _ :=xlNormal, Password:="", WriteResPassword:="", ReadOnlyRecommended:= _ False, CreateBackup:=False Any help is greatly appericated. Richard |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
link a local spreadsheet to a network shared spreadsheet | Setting up and Configuration of Excel | |||
Transmitting data from a server spreadsheet to a client spreadsheet | Excel Programming | |||
conversion of MS Works Spreadsheet to Excel 2002 Spreadsheet | Excel Discussion (Misc queries) | |||
Is there a way to insert a formula, password or macro in an excel spreadsheet that will automatically delete the spreadsheet? | Excel Discussion (Misc queries) | |||
How to open another Excel spreadsheet to copy data into current spreadsheet ? | Excel Programming |