> For the complete documentation index, see [llms.txt](https://docs.tabula.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tabula.io/data-transformation/formulas/string-functions/in.md).

# 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
