---
title: POWER
url: https://www.tines.com/docs/formulas/functions/power/
kind: formula-function
---

*[tines.com](https://www.tines.com/llms.txt) › [Docs](https://www.tines.com/docs/llms.txt) › [Formulas](https://www.tines.com/llm/docs/formulas.md) › [Functions](https://www.tines.com/llm/docs/formulas/functions.md)*

# POWER

*[View on tines.com](https://www.tines.com/docs/formulas/functions/power/)*

Raises a number to the power of another number.

**Categories:** Numbers

## Syntax

```
POWER(base, exponent)
```

## Examples

### Example 1

Input:

```json
{
  "my_action": {
    "message": 3
  }
}
```

Formula:

```
POWER(my_action.message, 2)
```

Output:

```json
9
```

### Example 2

Formula:

```
POWER(2, 3)
```

Output:

```json
8
```

## Sample actions

```json
{
  "standardLibVersion": "81",
  "actionRuntimeVersion": "3",
  "agents": [
    {
      "disabled": false,
      "name": "My Action",
      "description": "",
      "options": {
        "mode": "message_only",
        "loop": false,
        "payload": {
          "message": 3
        }
      },
      "position": {
        "x": 2445,
        "y": 3840
      },
      "type": "eventTransformation",
      "timeSavedUnit": "minutes",
      "timeSavedValue": 0,
      "monitorAllEvents": false,
      "monitorFailures": false,
      "monitorNoEventsEmitted": null,
      "form": null
    },
    {
      "disabled": false,
      "name": "POWER",
      "description": "",
      "options": {
        "mode": "message_only",
        "loop": false,
        "payload": {
          "power": "=POWER(my_action.message, 2)"
        }
      },
      "position": {
        "x": 2445,
        "y": 3945
      },
      "type": "eventTransformation",
      "timeSavedUnit": "minutes",
      "timeSavedValue": 0,
      "monitorAllEvents": false,
      "monitorFailures": false,
      "monitorNoEventsEmitted": null,
      "form": null
    }
  ],
  "links": [
    {
      "sourceIdentifier": 0,
      "receiverIdentifier": 1
    }
  ],
  "diagramNotes": []
}
```
