How to change complex 0.122345687+0.87659454j to 3 decimal places

  • Thread starter Thread starter erwan
  • Start date Start date
How to change complex 0.122345687+0.87659454j to 3 decimal places


=COMPLEX(ROUND(IMREAL(A1),3),ROUND(IMAGINARY(A1),3),"j")

or, if you might have either an "i" of "j" suffix:

=COMPLEX(ROUND(IMREAL(A1),3),ROUND(IMAGINARY(A1),3),RIGHT(A1,1))

--ron
 
thank you ron but still have slight problem when doing iteration.

Please be more specific. I don't understand what you mean in this context.
--ron
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top