Count Function
Description:
The number of members of a list.
Returns:
Whole Number
Parameter:
Parameter | Data Type | Description |
|---|---|---|
1 | Any* | The list. |
Examples:
When using functions inside a field, remember the field brackets:
{Count(VariableName)}
Expression | Result |
|---|---|
Count( List("a","b","c") ) | 3 |
Count( List(0) ) | 1 |
Count( List() ) | 0 |
This function is most often used as a business rule on a span:
The Borrower[
Count(BorrowerNames) IsMoreThan1
s] agree to the following: