Hi..
I have defined vAry as a Variant. I ReDim this to have 2 columns:
ReDim vAry(330,38)
How do I use Ubound on the second column only (the 38 element column)?
I am trying to use a For loop but only on the second column.
For I = 1 to vAry(???)
This this possible?
If I code Ubound(vAry(0,0)) i receive Type mismatch.
Thanks...
I have defined vAry as a Variant. I ReDim this to have 2 columns:
ReDim vAry(330,38)
How do I use Ubound on the second column only (the 38 element column)?
I am trying to use a For loop but only on the second column.
For I = 1 to vAry(???)
This this possible?
If I code Ubound(vAry(0,0)) i receive Type mismatch.
Thanks...