How to increase Precision value > 4?

Here I have fixed pay number as 5.88996 displaying via table component but the app is rounding it off to 5.8900 despite increasing the precision to 4,
image

and in the Input field it is visible like this, I know precision will not change any values and in the backend it remains the same, but from the UX perspective it is wrong, now how to manage this issue, I want to increase the precision of the table to further from 4.
copop

I think you expected 5.8899 instead of 5.8900 but Glide has always worked with “precision” like that. It’s not “take the original number” and cut off at the right position, rather “round to the right precision”.

If you want to display the full number, add a column that does this.

1 Like