In

circle-info

The IN keyword checks if a list or concept set contains a specific value.

This function is SQL compatible. For more information about SQL compatibility, see our documentation.

circle-check
chevron-rightvalue IN value_listhashtag

"Wallet" IN ([Products.Name] of [Products]) => Yes: if [Products] has a product with a name that is wallet.

chevron-rightvalue_list IN value_listhashtag

List("Wallet", "Moneyclip") IN ([Products.Name] of [Products]) => Yes: if [Products] has products with a name that is wallet and one that is moneyclip. => No: if only one of the names are in [Products]

chevron-rightconcept IN concept_sethashtag

'Role'.'Admin' IN { 'Role'.'PowerUser', 'Role'.'Admin' } => Yes

chevron-rightconcept_set IN concept_sethashtag

{'Lang'.'nl-NL'} IN {'Lang'.'nl-NL','Lang'.'en-US'} => Yes

{'Lang'.'de-DE', 'Lang'.'nl-NL'} IN {'Lang'.'nl-NL','Lang'.'en-US'} => No: the whole set must be contained to return true.

Last updated

Was this helpful?