How can I check how many elements in the array?
Does it use lower bound to find out ?
I forget the syntax
Printable View
How can I check how many elements in the array?
Does it use lower bound to find out ?
I forget the syntax
Ubound(array)
U can use LBound(ArrayName) to get the Lower Bound and
UBound(ArrayName) to get the Upper Bound.