The Excel IMREAL Function

Complex Numbers

Within the world of complex numbers, the 'imaginary' value, i is used to represent the square root of -1.

A Complex Number is composed of a real number combined with an imaginary number.

E.g. The complex number, z, is written as

z   =   5 + 2i
Related Function:
IMAGINARY Function

Function Description

The Excel IMREAL function returns the real coefficient of a supplied complex number.

I.e. the function returns the value a, for the complex number a + bi.

The syntax of the Imreal function is:

IMREAL( inumber )

where the inumber argument is a Complex Number.

Complex Numbers in Excel

Note that complex numbers are simply stored as text in Excel. When a text string in the format "a+bi" or "a+bj" is supplied to one of Excel's built-in complex number functions, this is interpreted as a complex number.

Also the complex number functions can accept a simple numeric value, as this is equivalent to a complex number whose imaginary coefficient is equal to 0.

Therefore, the inumber argument can be supplied to the Excel Imreal function as either:

  • A simple number;
  • A complex number encased in quotation marks - e.g. "5+3i";
  • A reference to a cell containing a complex number or a numeric value;
  • A value returned from another Excel function or formula.

Excel Imreal Function Examples

In the example spreadsheets below, the Excel Imreal function is used return the real coefficient of five different complex numbers.

 Formulas:
  A B
1 5+2i =IMREAL( A1 )
2   =IMREAL( "2+2i" )
3   =IMREAL( 6 )
4   =IMREAL( "3i" )
5   =IMREAL( COMPLEX( 4, 1 ) )
 Results:
  A B
1 5+2i 5
2   2
3   6
4   0
5   4

Note that, in the above example spreadsheet:


Further details of the Excel Imreal function are provided on the Microsoft Office website.


Imreal Function Errors

If you get an error from the Imreal function, this is likely to be one of the following:

Common Errors
#NUM! - Occurs if the supplied inumber argument is not recognised as a complex number.
#VALUE! - Occurs if the supplied inumber argument is a logical value.