Sub ConcatOutputFile()
'Concatenates Tabs to Column A in the Output File Tab
Dim rOut As Range
Dim wks As Worksheet
Dim i As Long
Set rOut = Worksheets("Sheet3").Cells(Rows.Count, "A").End(xlUp)
For Each wks In Worksheets(Array("Sheet1", "Sheet2"))
With wks
For i = 1 To .Cells(.Rows.Count, "A").End(xlUp).Row
Set rOut = rOut(2)
rOut.Value = .Cells(i, "A").Value & " '" & _
.Cells(i, "B").Value & "'" & _
.Cells(i, "C").Value
Next i
End With
'Following One line needs to be added
Set rOut = rOut(2)
Next wks
End Sub
Bookmarks