I am trying to get my math to be displayed with 1 place after the decimal. My code is
Private Sub txtWeight_AfterUpdate()
Dim MyBMI As Integer
MyBMI = (txtWeight / (txtHeight * txtHeight)) * 703
txtBMI = FormatNumber(MyBMI, 1)
End Sub
The answer should be 27.8, but I keep getting 28.
In the table the two fields txtWeight and txtHeight are long integar data types. On the form I have no format for any of the three text boxes and the decimal place field is currently at Auto. I have tried setting this value.
Thank you for your help.
Fay