How to use complex no. functions that have cell references?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

example: imsqrt. The only example in Help uses literal number args. I
want the args to be cell references. When I use literal cell references I
get NUM error.
 
This works for me:

D2: = 2+3i

D4: =IMSQRT(D2)

Make sure that the "i" is lower case (you can use

D4: =IMSQRT(LOWER(D2))

to make sure.
 
You can also build up the argument string. For example with
2
in cell A1, and
'-3i
in cell A2, you can use

=IMSQRT(A1&A2)

Note that the imaginary part needs to be entered with a single quote, then
the sign, then the multiplier and then the lower case i.

So if you wanted imsqrt(3+3i), enter 3 into cell A1, and '+3i into A2.

HTH,
Bernie
MS Excel MVP
 

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