Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have a problem with the following code and I cannot get it to run. I
am getting a "Run-time error '9': Subscript out of range" error when I try to run this code. Here is the code: Sub openfilesInALocation() Dim i As Integer, wb As Workbook With Application.FileSearch ..NewSearch ..LookIn = "C:\Documents and Settings\chrisf\My Documents\vbatest" ..SearchSubFolders = False ..Filename = "*.xls" ..Execute For i = 1 To .FoundFiles.Count 'Open each workbook Set wb = Workbooks.Open(Filename:=.Foun*dFiles(i)) 'Perform the operation on the open workbook ----------- Errors on the following line: wb.Worksheets("sheet1").Range(*"A1").Select 'Save and close the workbook wb.Save wb.Close 'On to the next workbook Next i End With End Sub If anyone can solve this for me I would appreciate the help! -Chris |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how do i change or make this macro??? pictures and code included | Charts and Charting in Excel | |||
Grab Time with milliseconds included in VBA | Excel Programming | |||
Require extra funtionality - existing code included | Excel Programming | |||
Run-time error from my code | Excel Programming | |||
Code Error - Run Time Error 5 (Disable Cut, Copy & Paste) | Excel Programming |