Home |
Search |
Today's Posts |
#15
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
On Sun, 07 Oct 2007 19:39:44 -0400, Ron Rosenfeld
wrote: On Sun, 7 Oct 2007 11:33:02 -0700, Yara wrote: Hi, Did anybody tried the following formula: LEN(A1-INT(A1)) the output should be the number of decimal digits of the number in cell A1. Examples: in cell A1 input the following formual: +LEN(A2-INT(A2)) in cell A2 input different numbers like the following: Cell A2 Cell A1 2.2 3 5 1 10.25 4 9.2 17 What 100.1 18 What again !!!! Can anyone figure what is happening Yara 100.1-int(100.1) does not equal .1 due to Excel's defined precision, well explained in other posts. If you want to count the number of digits to the right of the decimal point, then try this: =IF(ISERR(FIND(".",A1)),0,LEN(MID(A1,FIND(".",A1) +1,255))) --ron Never mind. Others have posted better solutions. --ron |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
copy of excel file not showing formulal/function in the function b | Excel Discussion (Misc queries) | |||
LINKEDRANGE function - a complement to the PULL function (for getting values from a closed workbook) | Excel Worksheet Functions | |||
Offset function with nested match function not finding host ss. | Excel Worksheet Functions | |||
Emulate Index/Match combo function w/ VBA custom function | Excel Worksheet Functions | |||
Nested IF Function, Date Comparing, and NetworkDays Function | Excel Worksheet Functions |