IMPOWER Function

Excel Functions › Engineering

All versions Engineering

The Excel IMPOWER function raises a complex number to a power — part of Excel’s complex-number toolkit for engineering and signal analysis.


Quick answer:
=IMPOWER("3+4i",2) // -7+24i

Syntax

=IMPOWER(inumber, number)
ArgumentDescription
inumberRequiredA complex number.
numberRequiredThe exponent.

How to use it

IMPOWER raises a complex number to a power. Complex numbers are written as text like "3+4i" (or with a "j" suffix). Build them with COMPLEX and pull the parts back out with IMREAL and IMAGINARY.

=IMPOWER("3+4i",2) // -7+24i

All IM functions take and return text. Keep complex numbers as text strings throughout your calculation chain; use IMREAL / IMAGINARY only when you need numeric parts for charts or further math.

Try it: interactive demo

Live demo

Enter a complex number (a+bi) and see the formula IMPOWER would evaluate.

Practice workbook

📊
Download the free IMPOWER practice workbook
Every example on this page, ready to open in Excel — plus practice challenges with answers on a separate tab. No sign-up required.

Frequently asked questions

How are complex numbers stored in Excel?
As text strings like "3+4i" or "3+4j". Build them with COMPLEX and read parts with IMREAL/IMAGINARY.
Does IMPOWER return text or a number?
Text — a complex number string you can feed into other IM functions.
Can I mix i and j suffixes?
No — all complex numbers in one calculation must use the same suffix. COMPLEX lets you choose which.
What if my real or imaginary part is zero?
Excel simplifies the display: COMPLEX(3,0) returns "3" and COMPLEX(0,4) returns "4i".

Master functions like this in one day

This page covers one function. Our Excel Formulas and Functions class covers the 30 that matter most — live, hands-on, taught by professionals in Dallas–Fort Worth, Houston, Austin, Oklahoma City, Denver, or online.

See the Formulas & Functions Class

Related functions: COMPLEX · IMREAL · IMAGINARY · IMABS · IMSUM