P
pedi
Ok, here is my problem:
I have a range (say A1:B3) and I am using something like this:
For Each c In Range(A1:B3)
I=I+1
Cells(5,I)=c.value
Next c
If my range looks like :
A B
--------
11 100
22 200
33 300
the output column "E" would be:
11
100
22
200
33
300
but I want the "for each loop" to scan the columns first so the output
would be :
11
22
33
100
200
300
I would appreciate any hint.
Thanks
I have a range (say A1:B3) and I am using something like this:
For Each c In Range(A1:B3)
I=I+1
Cells(5,I)=c.value
Next c
If my range looks like :
A B
--------
11 100
22 200
33 300
the output column "E" would be:
11
100
22
200
33
300
but I want the "for each loop" to scan the columns first so the output
would be :
11
22
33
100
200
300
I would appreciate any hint.
Thanks