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

# Number in Range

> Check whether a number falls inside inclusive bounds.

The **Number in Range** action returns whether a value is between a minimum and
maximum, including both boundaries.

## Inputs

| Input      | Type   | Required | Description                   |
| ---------- | ------ | -------- | ----------------------------- |
| **Number** | Number | Yes      | The value to test.            |
| **Min**    | Number | Yes      | The inclusive lower boundary. |
| **Max**    | Number | Yes      | The inclusive upper boundary. |

## Outputs

| Output     | Type    | Description                                          |
| ---------- | ------- | ---------------------------------------------------- |
| **Result** | Boolean | `true` when `Min ≤ Number ≤ Max`; otherwise `false`. |

For a range of `0` through `100`, the values `0`, `50`, and `100` all return
`true`.

<Note>
  Supply the lower boundary as **Min** and the upper boundary as **Max**.
  Reversed bounds do not get reordered and cannot match a normal finite number.
</Note>
