A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Share a view-only link to an Excel file that demonstrates the problem. Upload the file to a file-sharing website such as box.net/files, dropbox.com, onedrive.live.com, etc.
There are several possible explanations.
- One "number" might actually be text. Looks can be deceiving, and the format of the cell does not matter. Use formulas of the form =ISTEXT(A1) or =ISNUMBER(A1) to confirm.
- Two numbers might appear to be equal due to cell formatting, but they differ if you look at their full precision. Use formulas of the form =A1&"" to view the first 15 significant digits of both values.
- Two numbers might appear to be equal up to their first 15 significant digits, which is the most precision that Excel formats. But in fact, their internal binary values differ infinitesimally due to precision that Excel does not format.
This is why a simple screenshot might not be sufficient, and we need to work with the Excel file directly.