To Determine the 2D array
On Wed, 25 Aug 2010 21:29:35 -0700 (PDT), Danny
wrote:
Hi,
known that we can use Ubound to determine the array size. However, if
the array is Array(2,5), Ubound just able to determine the "2". May I
know how to find out the "5"?
Thanks.
Danny
Use the optional dimension argument.
i.e: UBound(Array,2)
Check HELP for UBound
|