LBound Function

Syntax

LBound(arrayvar[, dimension])

Group

Variable Info

Description

Returns the lowest index.

Parameters

Parameters Description
arrayvar Returns the lowest index for this array variable.
dimension Returns the lowest index for this dimension of arrayvar. If this is omitted, it returns the lowest index for the first dimension.

Example


Sub Main
    Dim A(-1 To 3,2 To 6)
    Debug.Print LBound(A)   '-1
    Debug.Print LBound(A,1) '-1
    Debug.Print LBound(A,2) ' 2 
End Sub

See also

UBound( )