I have a combo box with the following code attached to a command button.
Me!TextBoxFemScore = age.Column(3) + ldl.Column(3) + hdl.Column(3) + bp.Column(3) + Diabetes.Column(3) + smoker.Column(3)
This is on the click event. What I am trying to do is add the data from each combo box together. What I end up with is a string of numbers.
For example
1+2+3+4 should equal 10
I get 1234.
Any ideas on how to fix this? Zorro
Me!TextBoxFemScore = age.Column(3) + ldl.Column(3) + hdl.Column(3) + bp.Column(3) + Diabetes.Column(3) + smoker.Column(3)
This is on the click event. What I am trying to do is add the data from each combo box together. What I end up with is a string of numbers.
For example
1+2+3+4 should equal 10
I get 1234.
Any ideas on how to fix this? Zorro