View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
levent levent is offline
external usenet poster
 
Posts: 6
Default parsing complex numbers

can anyone think of an easy way to parse the real and
imaginary part of a complex number into two separate cells
in excel (using excel or VB)

2.111+0.34i = 2.111 0.34
-2.11-0.34i = -2.11 -0.34

i thought of cycling through the word using mid function
and checking for ascii values

thanks