> ## Documentation Index
> Fetch the complete documentation index at: https://kumo.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# IN

#### `<expression> IN <value>`

## Description

Evaluates to True if the value returned by `<expression>` is included in `<value>` as an element at any point. `<expression>` can be `<table>.<column>` or `AGG(<table>.<column>, <start>, <end>)`.

### Example

<CodeGroup>
  ```Text PQL theme={null}
  LOAN.STATUS IN ('A', 'C')
  ```
</CodeGroup>
