A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Excel cannot handle 999,888,777,666,555.82 as a number - it has too many digits. If you try to enter it as a number, Excel will change it to 999,888,777,666,555.00 (the cents have been changed to 00).
So if you really need this, you must either format the cell as text before entering the value, or prefix it with an apostrophe/single quote.
In B1: =--MID(A1,FIND(".",A1)+1,2)
In C1: =INT(MOD($A1,1000))
In D1: =MOD(QUOTIENT($A1,1000),1000)
In E1: =MOD(QUOTIENT($A1,1000000),1000)
In F1: =MOD(QUOTIENT($A1,1000000000),1000)
In G1: =MOD(QUOTIENT($A1,1000000000000),1000)
In H1: =MOD(QUOTIENT($A1,1000000000000000),1000)