• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

display correct numeric value for more than 15 digits

VDS

Member
Dear All,

If we add any numeric value in a particular cell with more than 15 digits, the last digit will automatically converted to zero. In such a case,any addition, substraction will also result in Zero. I want to do the calculations. After checking, it is found that it is shown in numeric value only.

Attach herewith sample data with fomula. How it can be done.

Help is requested.


VDS
 

Attachments

  • New Microsoft Excel Worksheet.xlsx
    9.5 KB · Views: 5
1] Excel store number cannot excess 15 digits and excess 15 digits number cannot do further addition or subtraction calculation

2] The workaround in your example 16 digits number is done by break it to 1+15 digits and something like this. The result become text.

3] In E9, copied down :

=IF(LEN(E$8)>15,SUBSTITUTE(E$8,RIGHT(E$8,15),RIGHT(E$8,15)+ROW(A1)),E$8+ROW(A1))

Regards
Bosco
 

Attachments

  • Excel16digits.xlsx
    11.8 KB · Views: 5
Last edited:
Back
Top