View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Ron Rosenfeld[_2_] Ron Rosenfeld[_2_] is offline
external usenet poster
 
Posts: 1,045
Default 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