Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
I'm running Excel 2003. I've been trying to open & close a bunch of files, but am finding that it leaves the file open even after I use the .close method and set the variables = nothing. The files seems to be released upon subsequent execution of the this line: "For Each sht In wkbk.worksheets" Am I not referencing something properly (or not releasing it properly)? I tried setting the sht reference to nothing both before & after the workbook was closed, and I tried inserting "Set sht = wkbk.sheets("Title")" right before the "for each ..." statement, but that didn't help either. Here's the code: Dim chngWkbk As Workbook Dim sht As Worksheet Dim wkbk As Workbook Dim curLn As Integer Set chngWkbk = ThisWorkbook 'work from the master file For curLn = chngWkbk.Sheets("Sheet Setup").Range("E1").Value To chngWkbk.Sheets("Sheet Setup").Range("F1").Value 'get the filename from the master file If chngWkbk.Sheets("Sheet Setup").Range("A" & curLn).Value < "" Then Set wkbk = Application.Workbooks.Open(chngWkbk.Sheets("Sheet Setup").Range("A" _ & curLn).Value, , 0, , , , , , , -1) ' *** files stay open until this line is executed the next time through the loop ****' For Each sht In wkbk.Worksheets 'do stuff Next sht Set sht = Nothing wkbk.Close Set sht = Nothing Set wkbk = Nothing End If Next curLn Thank you, Daniel |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Close & save a file at set time only IF the file is open | Excel Programming | |||
Loop through ".DAT" files, open run code, close next | Excel Programming | |||
VBA - on a button event, open another closed file, post changes, close file | Excel Programming | |||
Automate open file, update links, run macro, close and save file | Excel Programming | |||
Can I have a loop to open a set of workbooks get some data, close it one a time. | Excel Programming |