Type: Function
Function: IN
Syntax: IN(value, list)
Description: Returns true
if the chosen value is equal to one of the elements in the provided list.
Sample usage:
IN(author_username, ["john", "bob"])
returnstrue
if theauthor_username
field value is either “john” or “bob”, andfalse
otherwise.IN(author_username, ["john", "bob"]) ? “Team A” : “Team B”
returns “Team A” if the author is either “john” or “bob” and “Team B” otherwise. This value remapping can be used when a grouping per team is required.