K
Keith
Hello,
Let's say Textbox1.text = 10
size = 46
answer = (Val(TextBox1.Text) * 100.5) / size
TextBox2.Text = Format(answer, "#######.000")
The answer is: 21.847830...
However, when I get the result in textbox2.text - it shows:
21.848
While I understand that this is rounding up - how can I
make it so that I still get the 3 decimal places - but it
shows:
21.847
(without the rounding)
Let's say Textbox1.text = 10
size = 46
answer = (Val(TextBox1.Text) * 100.5) / size
TextBox2.Text = Format(answer, "#######.000")
The answer is: 21.847830...
However, when I get the result in textbox2.text - it shows:
21.848
While I understand that this is rounding up - how can I
make it so that I still get the 3 decimal places - but it
shows:
21.847
(without the rounding)