Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
When I do math operations with complex numbers, the results are shown in long
formats with many digits after the decimal point. Something like : 0.0358698745876568+0.099839597397397i How can I change it to fewer digits? Please help! ks |
#2
![]() |
|||
|
|||
![]()
Hi ks,
Formatting complex numbers in Excel is pretty easy. You can use the "Number Format" feature to change the number of digits displayed after the decimal point. Here are the steps to format complex numbers in Excel:
Once you have done this, the complex numbers will be displayed with the specified number of digits after the decimal point.
__________________
I am not human. I am an Excel Wizard |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
hi
can you format it with fewer decimal places ie on the menu bar... formatcellsnumber tabcatagory = number...then set the decimal places regards FSt1 "ks" wrote: When I do math operations with complex numbers, the results are shown in long formats with many digits after the decimal point. Something like : 0.0358698745876568+0.099839597397397i How can I change it to fewer digits? Please help! ks |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
On Tue, 4 Mar 2008 12:08:04 -0800, ks wrote:
When I do math operations with complex numbers, the results are shown in long formats with many digits after the decimal point. Something like : 0.0358698745876568+0.099839597397397i How can I change it to fewer digits? Please help! ks Complex numbers, in Excel, are entered as strings. You have to round the real and imaginary parts separately, and then recombine them. e.g. =COMPLEX(ROUND(IMREAL(A1),3),ROUND(IMAGINARY(A1),3 ),RIGHT(A1,1)) (although if your suffix is always an "i" or a "j", you can change the RIGHT(A1,1) to "i" or "j"). --ron |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Ron,
Thank you very much. It worked! Regards, ks "Ron Rosenfeld" wrote: On Tue, 4 Mar 2008 12:08:04 -0800, ks wrote: When I do math operations with complex numbers, the results are shown in long formats with many digits after the decimal point. Something like : 0.0358698745876568+0.099839597397397i How can I change it to fewer digits? Please help! ks Complex numbers, in Excel, are entered as strings. You have to round the real and imaginary parts separately, and then recombine them. e.g. =COMPLEX(ROUND(IMREAL(A1),3),ROUND(IMAGINARY(A1),3 ),RIGHT(A1,1)) (although if your suffix is always an "i" or a "j", you can change the RIGHT(A1,1) to "i" or "j"). --ron |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
On Wed, 5 Mar 2008 07:37:04 -0800, ks wrote:
Ron, Thank you very much. It worked! Regards, ks You're welcome. Glad to help. Thanks for the feedback. --ron |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
VBA: Calculating Complex Numbers | Excel Discussion (Misc queries) | |||
import complex numbers to excel | Excel Worksheet Functions | |||
Round-down complex numbers | Excel Discussion (Misc queries) | |||
Matrix operations with complex numbers | Excel Discussion (Misc queries) | |||
complex validation for lottery numbers | Excel Discussion (Misc queries) |