VBA with Ranges

zdodson

Board Regular
Joined
Feb 29, 2012
Messages
124
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
 

Excel Facts

Remove leading & trailing spaces
Save as CSV to remove all leading and trailing spaces. It is faster than using TRIM().
Try

Code:
.Range(Dry(d + 1), .Range(Left(Dry(d + 1), 1) & Rows.Count).End(xlUp)).Copy Sheets("Admin").Range("AA" & Rows.Count).End(xlUp).Offset([COLOR=#ff0000]1 , d/2[/COLOR])

Perhaps row offset also needs adjusting based on value of d
 
Last edited:
Upvote 0
Another option
Code:
Sub zdodson()
   Dim Dry As Variant
   Dim d As Long
   Dry = Array("BALLOTS", "D2", "AA", "BALLOTS", "O2", "AB")
   For d = 0 To UBound(Dry) Step 3
      With Sheets(Dry(d))
         .Range(Dry(d + 1), .Range(Left(Dry(d + 1), 1) & Rows.Count).End(xlUp)).Copy Sheets("Admin").Cells(Rows.Count, Dry(d + 2)).End(xlUp).Offset(1)
      End With
   Next d
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,537
Messages
6,125,393
Members
449,222
Latest member
taner zz

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