Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Greetings,
I'm created a new Excel file on the fly and copying a specific worksheet into that new file. This part is fine, until I try to close that new file (see last file of code) and get the error msg: Run time error 9 subscript out of range. Here's the logic in the code: newFname = "NewEXCELfile.XLS" Set NewWks = Workbooks.Add(1).Worksheets(1) With NewWks .Parent.SaveAs FileName:=newFname, FileFormat:=xlWorkbookNormal End With NewWks.Name = "MyNewSheet" Set destrange = NewWks.Range("A1:z100") Set sourceRange = ThisWorkbook.Sheets("SHEET1").Range("A1:z100") sourceRange.Copy destrange.PasteSpecial xlPasteColumnWidths, , False, False destrange.PasteSpecial xlPasteFormats, , False, False destrange.PasteSpecial (xlPasteFormulas) application.CutCopyMode = False Workbooks(newFname).Close Many thanks... |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
On Aug 25, 9:16 am, LetMeDoIt wrote:
Greetings, I'm created a new Excel file on the fly and copying a specific worksheet into that new file. This part is fine, until I try to close that new file (see last file of code) and get the error msg: Run time error 9 subscript out of range. Here's the logic in the code: newFname = "NewEXCELfile.XLS" Set NewWks = Workbooks.Add(1).Worksheets(1) With NewWks .Parent.SaveAs FileName:=newFname, FileFormat:=xlWorkbookNormal End With NewWks.Name = "MyNewSheet" Set destrange = NewWks.Range("A1:z100") Set sourceRange = ThisWorkbook.Sheets("SHEET1").Range("A1:z100") sourceRange.Copy destrange.PasteSpecial xlPasteColumnWidths, , False, False destrange.PasteSpecial xlPasteFormats, , False, False destrange.PasteSpecial (xlPasteFormulas) application.CutCopyMode = False Workbooks(newFname).Close Many thanks... I was able to run your code without any errors... Is all of your code in the list you provided? I'm using xl2007, what version are you using? |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks for looking into it. I'm using Office 2003 running XP on a
laptop. Maybe I should try this on windows 2000. On Aug 25, 3:40 pm, Ferris wrote: On Aug 25, 9:16 am, LetMeDoIt wrote: Greetings, I'm created a new Excel file on the fly and copying a specific worksheet into that new file. This part is fine, until I try to close that new file (see last file of code) and get the error msg: Run time error 9 subscript out of range. Here's the logic in the code: newFname = "NewEXCELfile.XLS" Set NewWks = Workbooks.Add(1).Worksheets(1) With NewWks .Parent.SaveAs FileName:=newFname, FileFormat:=xlWorkbookNormal End With NewWks.Name = "MyNewSheet" Set destrange = NewWks.Range("A1:z100") Set sourceRange = ThisWorkbook.Sheets("SHEET1").Range("A1:z100") sourceRange.Copy destrange.PasteSpecial xlPasteColumnWidths, , False, False destrange.PasteSpecial xlPasteFormats, , False, False destrange.PasteSpecial (xlPasteFormulas) application.CutCopyMode = False Workbooks(newFname).Close Many thanks... I was able to run your code without any errors... Is all of your code in the list you provided? I'm using xl2007, what version are you using?- Hide quoted text - - Show quoted text - |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I am using XP Office 2003 and it ran OK on mine.
"LetMeDoIt" wrote: Thanks for looking into it. I'm using Office 2003 running XP on a laptop. Maybe I should try this on windows 2000. On Aug 25, 3:40 pm, Ferris wrote: On Aug 25, 9:16 am, LetMeDoIt wrote: Greetings, I'm created a new Excel file on the fly and copying a specific worksheet into that new file. This part is fine, until I try to close that new file (see last file of code) and get the error msg: Run time error 9 subscript out of range. Here's the logic in the code: newFname = "NewEXCELfile.XLS" Set NewWks = Workbooks.Add(1).Worksheets(1) With NewWks .Parent.SaveAs FileName:=newFname, FileFormat:=xlWorkbookNormal End With NewWks.Name = "MyNewSheet" Set destrange = NewWks.Range("A1:z100") Set sourceRange = ThisWorkbook.Sheets("SHEET1").Range("A1:z100") sourceRange.Copy destrange.PasteSpecial xlPasteColumnWidths, , False, False destrange.PasteSpecial xlPasteFormats, , False, False destrange.PasteSpecial (xlPasteFormulas) application.CutCopyMode = False Workbooks(newFname).Close Many thanks... I was able to run your code without any errors... Is all of your code in the list you provided? I'm using xl2007, what version are you using?- Hide quoted text - - Show quoted text - |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I rewrote part of the code to handle the closing. Many thanks for
testing this. regards. On Aug 25, 5:14 pm, JLGWhiz wrote: I am using XP Office 2003 and it ran OK on mine. "LetMeDoIt" wrote: Thanks for looking into it. I'm using Office 2003 running XP on a laptop. Maybe I should try this on windows 2000. On Aug 25, 3:40 pm, Ferris wrote: On Aug 25, 9:16 am, LetMeDoIt wrote: Greetings, I'm created a new Excel file on the fly and copying a specific worksheet into that new file. This part is fine, until I try to close that new file (see last file of code) and get the error msg: Run time error 9 subscript out of range. Here's the logic in the code: newFname = "NewEXCELfile.XLS" Set NewWks = Workbooks.Add(1).Worksheets(1) With NewWks .Parent.SaveAs FileName:=newFname, FileFormat:=xlWorkbookNormal End With NewWks.Name = "MyNewSheet" Set destrange = NewWks.Range("A1:z100") Set sourceRange = ThisWorkbook.Sheets("SHEET1").Range("A1:z100") sourceRange.Copy destrange.PasteSpecial xlPasteColumnWidths, , False, False destrange.PasteSpecial xlPasteFormats, , False, False destrange.PasteSpecial (xlPasteFormulas) application.CutCopyMode = False Workbooks(newFname).Close Many thanks... I was able to run your code without any errors... Is all of your code in the list you provided? I'm using xl2007, what version are you using?- Hide quoted text - - Show quoted text -- Hide quoted text - - Show quoted text - |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
error message : I can't close my PERSONAL.XLS file | New Users to Excel | |||
Everytime i close an excel file, it creates a new backup file | Excel Discussion (Misc queries) | |||
Let me save/close EXCEL if a formula I put in has an error in it | Setting up and Configuration of Excel | |||
Error trying to close down dbase IV file used for input to excel | Excel Programming | |||
Adding an error message at close of file when criteria are met | Excel Discussion (Misc queries) |