All,
Currently, I am working with the following code:
Dry = Array("BALLOTS", "D2", "BALLOTS", "O2")
For d = 0 To UBound(Dry) Step 2
With Sheets(Dry(d))
.Range(Dry(d + 1), .Range(Left(Dry(d + 1), 1) & Rows.Count).End(xlUp)).Copy Sheets("Admin").Range("AA" & Rows.Count).End(xlUp).Offset(1)
End With
Next d
This code essentially grabs all of the data from Columns D and O and stacks it all in Column AA of my "Admin" sheet. Instead of doing this, I need it to take the data from:
-"Ballots".Column D and put it in "Admin".Column AA
-"Ballots".Coumn O and put it in "Admin".Column AB
Any help on this would be greatly appreciated!
-Z
Currently, I am working with the following code:
Dry = Array("BALLOTS", "D2", "BALLOTS", "O2")
For d = 0 To UBound(Dry) Step 2
With Sheets(Dry(d))
.Range(Dry(d + 1), .Range(Left(Dry(d + 1), 1) & Rows.Count).End(xlUp)).Copy Sheets("Admin").Range("AA" & Rows.Count).End(xlUp).Offset(1)
End With
Next d
This code essentially grabs all of the data from Columns D and O and stacks it all in Column AA of my "Admin" sheet. Instead of doing this, I need it to take the data from:
-"Ballots".Column D and put it in "Admin".Column AA
-"Ballots".Coumn O and put it in "Admin".Column AB
Any help on this would be greatly appreciated!
-Z