OriginalPostID-116363
Discussion posts and replies are publicly visible
It might help if you use fixed(). In some cases, the number is stored with greater precision than is displayed by default. fixed() may allow you to display the number with greater precision.
fixed()
For example, tostring(1234.5678) will return the string "1234.567", but tostring(fixed(1234.5678,4)) will return "1,234.5678".
tostring(1234.5678)
tostring(fixed(1234.5678,4))
If I remember correctly, this can help for numbers up to 16 digits. Beyond that, you may need to take a different approach, such as storing the values as strings.