Marsman
Board Regular
- Joined
- May 13, 2013
- Messages
- 62
- Office Version
- 365
- Platform
- Windows
Good afternoon - could I get some help on being able to move all the data in Column "I" (eye) across all tabs (with the exception of the tab named "Summary") into one column of the "summary" tab?
Currently I have a script running which collects all the data in each tab and it copies it to the Summary tab where the data from each tab is in its own column then I am manually moving all the column data into one column.
{Script}
Sub Transponder_Gathering()
Dim C As Integer
Dim WS As Worksheet
C = 1
For Each WS In Worksheets
If WS.Name <> "Summary" Then
WS.Range("I:I").Copy Destination:=Sheets("Summary").Cells(, C).EntireColumn
C = C + 1
Else
End If
Next WS
End Sub
Currently I have a script running which collects all the data in each tab and it copies it to the Summary tab where the data from each tab is in its own column then I am manually moving all the column data into one column.
{Script}
Sub Transponder_Gathering()
Dim C As Integer
Dim WS As Worksheet
C = 1
For Each WS In Worksheets
If WS.Name <> "Summary" Then
WS.Range("I:I").Copy Destination:=Sheets("Summary").Cells(, C).EntireColumn
C = C + 1
Else
End If
Next WS
End Sub