this post was submitted on 30 May 2025
7 points (100.0% liked)
Excel
199 readers
1 users here now
A community dedicated to any discussion about Excel. QnA, Discussion of other spreadsheet applications and ancillary programming/scripting are also welcome.
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I think you may be misunderstanding what the numbers you're seeing in the formula bar are? Its the absolute value in the cell.
12345.000 = 12345. It doesnt matter that you can't see the three 0s in the formula bar, its the same number.
12345.100 = 12345.1 The missing 0s dont matter.
Excel is storing the absolute values and will show you the decimals in the formula bar when they exist in that cell. When you cross reference it with your database it will be correctif tha data there us also numeric.
The potential issue could be if you dont want values to have more than 3 decimal places because of rounding errors. In that case you would need to apply a formula to convert the numbers to be truly 3 decimal spaces.
For example 12345.001 is not exactly the same as 12345.0005 as its been rounded up. Excel would have the number with all decimal places (within limits) and that could mismatch the data in your database if its stored to 3 decimal place. Then you might want to convert your data so it properly rounds the numbers as new absolute values to work with.