# POWER

The POWER function returns the result of a number raised to a power.

## Syntax

```javascript
pow(value,power)
```

## Arguments

value – The base number, it can be a number or node. This is a required argument.

power – The exponent to which the value is raised. This is a required argument.

## Example

```javascript
pow(COLUMN1, 2)
```

Returns the value of COLUMN1 raised to the power of 2

## Excel equivalent

[POWER](https://support.microsoft.com/en-us/office/power-function-d3f2908b-56f4-4c3f-895a-07fb519c362a)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.inforiver.com/formula-syntax/math-functions/power.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
