Returns a Long data type containing the largest available subscript for the indicated dimension of an array.
Syntax
UBound(arrayname, [ dimension ])
The UBound function syntax has these parts.
Part
Description
arrayname
Required. Name of the array variable; follows standard variable naming conventions.
dimension
Optional; Variant (Long). Whole number indicating which dimension's upper bound is returned. Use 1 for the first dimension, 2 for the second, and so on. If dimension is omitted, 1 is assumed.
Remarks
The UBound function is used with the LBound function to determine the size of an array. Use the LBound function to find the lower limit of an array dimension.
UBound returns the following values for an array with these dimensions:
Statement
Return Value
UBound(A, 1)
100
UBound(A, 2)
3
UBound(A, 3)
4
Example
This example uses the UBound function to determine the largest available subscript for the indicated dimension of an array.
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.
Do you want to know more about the built-in programming functions of Business Central? This module will discuss the different available functions that you can use when developing for Business Central.