Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
How do I add just decimals together? I want to take a number like 8.46 and
9.55 and add only the 46 and 55 together. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Michael
If they're in A1 and A2 =MOD(A1,1)+MOD(A2,1) -- HTH Nick Hodge Microsoft MVP - Excel Southampton, England www.nickhodge.co.uk HIS "Michael Brown" wrote in message ... How do I add just decimals together? I want to take a number like 8.46 and 9.55 and add only the 46 and 55 together. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=MOD(8.46,1)+MOD(9.55,1)
HTH. Best wishes Harald "Michael Brown" skrev i melding ... How do I add just decimals together? I want to take a number like 8.46 and 9.55 and add only the 46 and 55 together. |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
do you only have two decimals all the time, if so:
if a1 8.46 a2 9.55 use =right(a1,2)+right(a2,2) if you have more than two decimal use =RIGHT(a1,LEN(a1)-SEARCH(".",a1,1))+RIGHT(a2,LEN(a2)-SEARCH(".",a2,1)) "Michael Brown" wrote: How do I add just decimals together? I want to take a number like 8.46 and 9.55 and add only the 46 and 55 together. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Rounding Error when adding or subtracting two cells | Excel Worksheet Functions | |||
Comma format button decimals | Excel Discussion (Misc queries) | |||
How do I calculate without decimals in excel? | Excel Worksheet Functions | |||
help neede with adding times | Excel Discussion (Misc queries) | |||
Decimals separation by . or , | Excel Discussion (Misc queries) |