CONTAINSWITHIN

Returns true if the given value exists within a column or list of values.

ALIAS of IN

CONTAINSWITHIN(value, where)

Returns true if the input value(s) exist within column(s) or list of values and is of a matching data type, otherwise returns false.

Arguments

Argument

Description

value

The value(s) to search for.

where

A column or list of values to search.

Output

Outputs true if value exists within where, otherwise outputs false.

Example

Last updated