> ## 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.

# Convert to Number

> Coerce a value into a number.

| Input     | Type | Required | Description           |
| --------- | ---- | -------- | --------------------- |
| **Value** | Any  | Yes      | The value to convert. |

| Output     | Type   | Description                  |
| ---------- | ------ | ---------------------------- |
| **Number** | Number | The converted numeric value. |

Numeric text such as `"42.5"` becomes `42.5`. `true` becomes `1`, `false`
becomes `0`, and empty text becomes `0`.

<Warning>
  The action fails when the input cannot be coerced to a valid number. Use **Is
  Number?** only to test existing types; it does not predict every value that
  this action can convert.
</Warning>
