@Ellen_Sligh1 In the article here on list expressions, it has lots of examples… To directly answer your question <> is not needed for anything, and I have no idea why they chose that. So the “Value” is simply anything that might be in the list. most commonly that will be a value from a column which is [column_name] But you can snag any single “value” from anywhere with many different lookup and other types of functions…
IN Function IN(, ) checks for the presence of a value in a list.
IN([ColumnName], {1, 2, 3})
— returns True if ColumnName contains 1, 2, or 3. The list values must be constants in this form of list.
IN([ColumnName], LIST(11, 22, 3*3))
— returns True if ColumnName contains 1, 4, or 9. This example illustrates that the list values may be either constants or expressions when the LIST function is used.
IN(“Banana”, [FruitEnumList]) — returns True if the column FruitEnumList contains the value “Banana”.
OR(IN(“Apple”, [FruitEnumList]), IN(“Banana”, [FruitEnumList])) — returns True if the column FruitEnumList contains the value “Apple”, or the value “Banana”, or both the value “Apple” and the value “Banana”.
AND(IN(“Apple”, [FruitEnumList]), IN(“Banana”, [FruitEnumList])) — returns True if the column FruitEnumList contains both the value “Apple” and the value “Banana”.
AND(IN(“Apple”, [FruitEnumList]), NOT(IN(“Banana”, [FruitEnumList]))) — returns True if the column FruitEnumList contains the value “Apple” but not the value “Banana”.
Also, small note, i’m simply a community member, and i’m not an Appsheet Employee.
help.appsheet.com - List Expressions and Aggregates List Expressions and Aggregates help.appsheet.com