For instance
5 / 2 = 2.5
What I want is to force it to 4 digits:
5 / 2 = 2.5000
1 / 2 = 0.5000
10 / 10 = 1.0000
I tried to use round(5/2, 4) but it does not work.
For instance
5 / 2 = 2.5
What I want is to force it to 4 digits:
5 / 2 = 2.5000
1 / 2 = 0.5000
10 / 10 = 1.0000
I tried to use round(5/2, 4) but it does not work.