Using 'With Workbook' and 'Do while' loop through multi workbook

KNKN9

Board Regular
Joined
Mar 27, 2017
Messages
92
Hi ...

I have multiple workbooks saved in a folder and the code below seems to only work for my first file. However, I need it to work for all the files in the folder but can't seem to see where I have gone wrong.


Code:
Dim wkbDest As Workbook
Dim wkbSource As Workbook
Dim shtcopy As Worksheet
Dim shtfinal As Worksheet
Dim LastRow As Long




DataRow = 3
OutRow = 2
Role1Col = 13


Const strPath As String = "filename"


ChDir strPath
    strExtension = Dir("*.xls*")
    Do While strExtension <> ""
    Set wkbSource = Workbooks.Open(strPath & strExtension)


With wkbSource
     LastRow = .Sheets("Actual Hours").Cells(10000, 1).End(xlUp).Row
   Do Until .Sheets("Sheet1").Cells(DataRow, 1) = ""
    OutStart = OutRow
    RoleCol = Role1Col
    Do Until .Sheets("Sheet1").Cells(2, RoleCol) = ""
            If .Sheets("Sheet1").Cells(DataRow, RoleCol) > 0 Then
            .Sheets("Sheet4").Cells(OutRow, Role1Col) = .Sheets("Sheet1").Cells(1, Role1Col + VBA.Int((RoleCol - Role1Col) / 3) * 3)
            .Sheets("Sheet4").Cells(OutRow, Role1Col + 1) = .Sheets("Sheet1").Cells(2, RoleCol)
            .Sheets("Sheet4").Cells(OutRow, Role1Col + 2) = .Sheets("Sheet1").Cells(DataRow, RoleCol)
            OutRow = OutRow + 1
            End If
            RoleCol = RoleCol + 1
            Loop
            If OutStart <> OutRow Then
            .Sheets("Sheet1").Range(.Sheets("Sheet1").Cells(DataRow, 1), .Sheets("Sheet1").Cells(DataRow, Role1Col - 1)).Copy .Sheets("Sheet4").Range(.Sheets("Sheet4").Cells(OutStart, 1), Sheets("Sheet4").Cells(OutRow - 1, Role1Col - 1))
            End If
            DataRow = DataRow + 1
            Loop
            .Close savechanges:=True
        End With
        strExtension = Dir
    Loop
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
Try this

Code:
Sub Multi_WorkBook()
  Dim wkbDest As Workbook, wkbSource As Workbook
  Dim shtcopy As Worksheet, shtfinal As Worksheet
  Dim LastRow As Long, DataRow As Long, Role1Col As Long, OutRow As Long
  Dim strExtension, OutStart As Long, RoleCol As Long
  
  
  Const strPath As String = "C:\trabajo\"
  strExtension = Dir(strPath & "*.xls*")
  Do While strExtension <> ""
    Set wkbSource = Workbooks.Open(strPath & strExtension)
[COLOR=#0000ff]    DataRow = 3[/COLOR]
[COLOR=#0000ff]    OutRow = 2[/COLOR]
[COLOR=#0000ff]    Role1Col = 13[/COLOR]
    With wkbSource
      LastRow = .Sheets("Actual Hours").Cells(Rows.Count, "A").End(xlUp).Row
      Do Until .Sheets("Sheet1").Cells(DataRow, "A") = ""
        OutStart = OutRow
        RoleCol = Role1Col
        Do Until .Sheets("Sheet1").Cells(2, RoleCol) = ""
          If .Sheets("Sheet1").Cells(DataRow, RoleCol) > 0 Then
            .Sheets("Sheet4").Cells(OutRow, Role1Col) = .Sheets("Sheet1").Cells(1, Role1Col + VBA.Int((RoleCol - Role1Col) / 3) * 3)
            .Sheets("Sheet4").Cells(OutRow, Role1Col + 1) = .Sheets("Sheet1").Cells(2, RoleCol)
            .Sheets("Sheet4").Cells(OutRow, Role1Col + 2) = .Sheets("Sheet1").Cells(DataRow, RoleCol)
            OutRow = OutRow + 1
          End If
          RoleCol = RoleCol + 1
        Loop
        If OutStart <> OutRow Then
          .Sheets("Sheet1").Range(.Sheets("Sheet1").Cells(DataRow, 1), .Sheets("Sheet1").Cells(DataRow, Role1Col - 1)).Copy .Sheets("Sheet4").Range(.Sheets("Sheet4").Cells(OutStart, 1), Sheets("Sheet4").Cells(OutRow - 1, Role1Col - 1))
        End If
        DataRow = DataRow + 1
      Loop
      .Close savechanges:=True
    End With
    strExtension = Dir()
  Loop
End Sub
 
Upvote 0
This works perfect!

Thanks


Try this

Code:
Sub Multi_WorkBook()
  Dim wkbDest As Workbook, wkbSource As Workbook
  Dim shtcopy As Worksheet, shtfinal As Worksheet
  Dim LastRow As Long, DataRow As Long, Role1Col As Long, OutRow As Long
  Dim strExtension, OutStart As Long, RoleCol As Long
  
  
  Const strPath As String = "C:\trabajo\"
  strExtension = Dir(strPath & "*.xls*")
  Do While strExtension <> ""
    Set wkbSource = Workbooks.Open(strPath & strExtension)
[COLOR=#0000ff]    DataRow = 3[/COLOR]
[COLOR=#0000ff]    OutRow = 2[/COLOR]
[COLOR=#0000ff]    Role1Col = 13[/COLOR]
    With wkbSource
      LastRow = .Sheets("Actual Hours").Cells(Rows.Count, "A").End(xlUp).Row
      Do Until .Sheets("Sheet1").Cells(DataRow, "A") = ""
        OutStart = OutRow
        RoleCol = Role1Col
        Do Until .Sheets("Sheet1").Cells(2, RoleCol) = ""
          If .Sheets("Sheet1").Cells(DataRow, RoleCol) > 0 Then
            .Sheets("Sheet4").Cells(OutRow, Role1Col) = .Sheets("Sheet1").Cells(1, Role1Col + VBA.Int((RoleCol - Role1Col) / 3) * 3)
            .Sheets("Sheet4").Cells(OutRow, Role1Col + 1) = .Sheets("Sheet1").Cells(2, RoleCol)
            .Sheets("Sheet4").Cells(OutRow, Role1Col + 2) = .Sheets("Sheet1").Cells(DataRow, RoleCol)
            OutRow = OutRow + 1
          End If
          RoleCol = RoleCol + 1
        Loop
        If OutStart <> OutRow Then
          .Sheets("Sheet1").Range(.Sheets("Sheet1").Cells(DataRow, 1), .Sheets("Sheet1").Cells(DataRow, Role1Col - 1)).Copy .Sheets("Sheet4").Range(.Sheets("Sheet4").Cells(OutStart, 1), Sheets("Sheet4").Cells(OutRow - 1, Role1Col - 1))
        End If
        DataRow = DataRow + 1
      Loop
      .Close savechanges:=True
    End With
    strExtension = Dir()
  Loop
End Sub
 
Upvote 0
I'm glad to help you. Thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,540
Messages
6,120,107
Members
448,945
Latest member
Vmanchoppy

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top