Formatting Complex Number Functions

  • Thread starter Thread starter Dick Snell
  • Start date Start date
D

Dick Snell

Has anyone found a way to easily format the results of the
complex number functions, e.g., IMPRODUCT?
 
If you want to round the result, you will have to break it apart, round the
real and imaginary parts separately, and then recombine them, like this:
=COMPLEX(ROUND(IMREAL(A1),2),ROUND(IMAGINARY(A1),2))
 
Back
Top