SoulBrutha23
Technical User
I have a text box (textGrade) that is trying to calulate a percentage from totals text box (txtTotal).
Here is the procedure:
Private Sub txtGrade_Enter()
txtGrade = txtTotal / 21
End Sub
So when I run the procedure, either i the answer is 0 or 100%. What did I do wrong?
Here is the procedure:
Private Sub txtGrade_Enter()
txtGrade = txtTotal / 21
End Sub
So when I run the procedure, either i the answer is 0 or 100%. What did I do wrong?