Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
I am trying to populate one sheet with data from 120 other workbooks/sheets. They all have the same template. When running the code below it cant find the requested sheet. Is there a problem with my way of opening the file? I have confirmed that the name exist and is correct. Sub Upload() Dim fs, f, s, fc, f1, f2 f2 = ThisWorkbook.Path Set fs = CreateObject("scripting.filesystemobject") Set f = fs.getfolder(f2 + "\files\") Set fc = f.Files For Each f1 In fc Open f1 For Binary Access Read As #1 Sheets("Business Overview").Range("B4:c38").Copy Windows("VB_work.xls").Activate Sheets("temp").Range("h3").Paste Workbooks(s).Close Windows("VB_work.xls").Activate Next End Sub /Jim |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how can find sheet on workbook have so many sheet ? | Excel Worksheet Functions | |||
find last row in a sheet | Excel Discussion (Misc queries) | |||
Find data from one sheet in another sheet | Excel Worksheet Functions | |||
Find A Value In Sheet? | Excel Discussion (Misc queries) | |||
Find changes and add them to the new sheet | Excel Programming |