Share via

Excel 2016 doesn't show true zero

Anonymous
2024-02-12T18:54:22+00:00

When I sum E2 to H2 in I2, I get 0.00000000000023... Values were entered directly and not formula results. I tried different values and some return true zero and others do not. Any ideas how to fix this to get true zero for all values.

Microsoft 365 and Office | Excel | For home | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

Answer accepted by question author

Anonymous
2024-02-12T19:34:17+00:00

You are running into one of the limitations of the binary expression of decimal numbers.

If you are expecting to only use two decimal places, then be explicit in your formula:

=ROUND(SUM(values),2)

Also, and this can be a further source of error so it is more a curiosity

=Positive Number + Positive Number + Positive Number + Negative Number

will often work and give exactly 0, where this will fail to give exactly 0:

=Positive Number + Negative Number + Positive Number + Positive Number

Was this answer helpful?

1 person found this answer helpful.
0 comments No comments

1 additional answer

Sort by: Most helpful
  1. Anonymous
    2024-02-12T19:33:20+00:00

    Since you fail to mention how the cells are formatted its all guesswork

    Was this answer helpful?

    0 comments No comments