# In

Returns `true` if a string is one of the following values. The `In` function is a shorthand for multiple `or` conditions.

```mathematica
In("Germany", "USA", "Austria", "Germany") → true
In("Germany", "USA", "Austria", "Mexico") → false
In(column, "USA", "Austria", "Germany") → true
```

#### Inputs

`In(string, [value...])`

* `string` - A text value to search for
* `value` - List of values to compare with the string
