Quantcast
Channel: Excel Help Forum - Excel Programming / VBA / Macros
Viewing all articles
Browse latest Browse all 50070

[SOLVED] which value UBound will e returns of the array ?

$
0
0
Dear all, which value UBound will be returns for the following dim array ?
Code:

dim a(4,5,100)
UBound(a,1) = value ?
UBound(a,2) = value ?
UBound(a,3) = value ?

where it was like below
Code:

dim a(100,5,4)
UBound(a,1) = 100
UBound(a,2) = 5
UBound(a,3) = 4


Viewing all articles
Browse latest Browse all 50070

Trending Articles