Syntax
COUNT(A1)
Arguments
A1 must be an array.
Result
The function result is a scalar value.
Description
The function returns the number of elements in the input array.
Example 1:
Expression: COUNT( arg1 )
arg1 | 5.8 | 3.2 | 1.0 | 6.9 | 1.7 |
Result: 5
Related Examples
Windows Forms: Data Manipulation\Functions\General Purpose Functions 2