Free cookie consent management tool by TermsFeed enumerate() Function
enumerate() Function

Function

enumerate( n )

Returns a list of integer numbers from 0 through n-1.

Parameters

Keyword Type Description

n

Number(Integer)

The number of days to test.

Returns

Integer Array

Usage considerations

The resulting enumerated list begins with zero.

To start the list at 1, add +1 onto the syntax as follows: enumerate(*n*)+1

Examples

enumerate(10) returns 0, 1, 2, 3, 4, 5, 6, 7, 8, 9

Feature compatibility

The table below lists this function's compatibility with various features in Appian.
Feature Compatibility Note
Portals Compatible
Offline Mobile Compatible
Custom Record Field Expressions Compatible
Process Reports Compatible
Process Events Compatible
Open in Github Built: Thu, Apr 18, 2024 (09:37:34 PM)

enumerate() Function

FEEDBACK