johnclimer
New Member
- Joined
- Nov 4, 2011
- Messages
- 3
Hello,
I have an array of ranges and I want to know if there is a way to paste one row from one of the ranges to a range in the active worksheet?
Here is what my code looks like:
I can access individual cells of dataArray with no problem: dataArray(i)(1,1)
or the entire range: dataArray(i)
but I want only a 'row' from the range.
Any suggestions???
Thanks,
John Climer
I have an array of ranges and I want to know if there is a way to paste one row from one of the ranges to a range in the active worksheet?
Here is what my code looks like:
Code:
For i = 1 to 10
dataArray(i) = Range("C1:T50")
Next i
ActiveSheet.Range("C1:T1") = dataArray(i)(???)
or the entire range: dataArray(i)
but I want only a 'row' from the range.
Any suggestions???
Thanks,
John Climer
Last edited: