Get product of complex numbers
=IMPRODUCT(inumber1, [inumber2], ...)
| Parameter | Description |
|---|---|
inumber1 |
Complex number 1. |
inumber2 |
[optional] Complex number 2. |
The Excel IMPRODUCT function returns the product of one or more complex numbers. For example:
=IMPRODUCT("1+2i", "3+5i") // returns -7+11i
The IMPRODUCT function takes in two or more arguments in the form of inumber1, inumber2, and so on. Arguments can be hard-coded values, cell reference
=IMPRODUCT(B6:B10) // multiply the complex numbers in B6:B10
If Excel encounters values not recognized as complex numbers, a #NUM! Error is thrown.
=IMPRODUCT("1+2i", "invalid input") // throws #NUM! error
=IMPRODUCT("1+2i", "3+5i") // returns -7+11i