in in

Checks if the first argument value is in the list. The check is performed through an Equal on each argument value. It returns true if the argument value is found, false otherwise.

The type of the <expression> must match with items of the list. Types of items of the list, as a reminder, must match with each other.

Category

List

Function syntax

in(<parameters>)

Parameters

Parameter
Type
String
String
Boolean
Boolean
Integer
Integer
Decimal
Decimal
Duration
Duration
DateTime
DateTime
DateTimeOnly
DateTimeOnly
List
listString
List
listBoolean
List
listInteger
List
listDecimal
List
listDuration
List
listDateTime
List
listDateTimeOnly
List
listDateOnly

Signature and returned type

in(<integer>,<listInteger>)

in(<decimal>,<listDecimal>)

in(<string>,<listString>)

in(<boolean>,<listBoolean>)

in(<dateTimeOnly>,<listDateTimeOnly>)

in(<dateTime>,<listDateTime>)

in(<dateOnly>,<listDateOnly>)

in(<duration>,<listDuration>)

Return a boolean.

Example

in(4,[4,5,3,4])

Returns true.

in(8,[4,5,3,4])

Returns false.

in(#{ExperiencePlatform.ProfileFieldGroup.profile.person.gender}, ["male"])

recommendation-more-help
4f4a00c1-77c9-4eee-84df-bbe6206c3ab9