Multiply a Number by a Power in Google Sheets – Pow | Power | Caret Sign

Published on

There are two functions to multiply a number by a Power in Google Sheets. They are Power() and Pow(). Other than these two functions there is the Caret ^ Symbol that does the same thing.

While the Power() is categorized as a Math function in Google Sheets the Pow() is categorized under Operator.

Let me explain to you how to multiply a number by a Power in Google Sheets using the functions and the symbol.

How to Multiply a Number by a Power in Google Sheets

Use the Power, Pow functions or the Caret to return a base number raised to an exponent power.

When you are multiplying a number by a Power, what you are really doing is multiplying that number (base) by itself a number of times equal to the power (exponent).

Multiply a Number by a Power Using the Power() Function

Syntax:

POWER(base, exponent)

Example to the Usage of Power Function in Google Sheets:

=POWER(10,3)

The result would be 1000 which is equal to;

=10*10*10

Multiply a Number by a Power Using the Pow() Function

You can replicate the same example using the Pow() function in Google Sheets. Actually, both Power and Pow are the same.

As far as I know, there is only the Power() function in Excel. But I am unsure about the availability in the latest iteration of Excel.

Syntax:

POW(base, exponent)

Example to the Usage of Pow Function in Google Sheets:

=POW(10,3)

Multiply a Number by a Power Using the Caret

This works both in Excel and Google Sheets. You can raise a number to a power using ^ as below.

=10^3

The above are the 3 options to multiply a number by a Power in Google Sheets.

Points to be Noted:

The above two functions and the Caret work in an Array too. See the example below where the ArrayFormula also got invloved.

Multiply a number by a Power in Google Sheets

The next point is about the negative numbers as the base in Power.

If the base is negative the exponent must be integer only. Otherwise, the formula would return the #NUM! error saying “POWER evaluates to an imaginary number”

Negative Base causes NUM Error in Power function

Fun Tip on the use of Power, Pow or the ^ in Other Formulas

I normally use the caret in Query header, Array_Constrain as well as in the SORTN functions when I want the formula to return all the rows.

Sometimes, it may not be possible to specify the number of rows to be returned by a Formula after processing the source. In such cases, we can virtually say “All” using the Power function. Here is one such example.

Caret in SORTN:

In the below example, I have used the SORTN to return sorted ‘n’ unique values.

The use of Power function in SORTN

Since I am unsure about the ‘n’ after unique, I have used the Caret.

Note: In the above example the number 2 immediately after the power is the Tie mode.

Must Read: SORTN Tie Modes in Google Sheets – The Four Tiebreakers.

See the use of Power in Query – The Flexible Array Formula to Join Columns in Google Sheets.

Prashanth KV
Prashanth KV
Your Trusted Google Sheets and Excel Guide Prashanth KV brings a wealth of experience in Google Sheets and Excel, cultivated through years of work with multinational corporations in Mumbai and Dubai. As a recognized Google Product Expert in Docs Editors, Prashanth shares his expertise through insightful blogging since 2012. Explore his blog for practical tips and guidance on maximizing your spreadsheet skills.

How to Extract Numbers from Text in Excel with Regex

You can use the REGEXEXTRACT or REGEXREPLACE functions to easily extract numbers from text...

Using OFFSET and MATCH Together in Google Sheets: Advanced Tips

One powerful and flexible way to look up values is by combining the OFFSET...

How to Use OFFSET and XMATCH Functions Together in Excel

We often use the OFFSET and XMATCH functions together to match a value in...

How to Calculate Maximum Drawdown in Excel and Google Sheets

You can use the following dynamic array formula to calculate maximum drawdown (MDD) in...

More like this

Using OFFSET and MATCH Together in Google Sheets: Advanced Tips

One powerful and flexible way to look up values is by combining the OFFSET...

Running Count with Structured References in Google Sheets

Running a count with structured references is achievable in Google Sheets tables using the...

Running Total with Structured Table References in Google Sheets

You can use two types of formulas to create a running total with structured...

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.