GaryWilsonCPA
Technical User
I wish to use two fields to create an amount in a third field. Edit amount should be the sum of textbo2 times editquatity. If I put the formula together like below I get a concactonation of editquantity and textbox2.
editAmount.Text = (editQuantity.Text) + (TextBox2.Text)
I think I am on the right path, but I need to change the formula to below, I get errors.
editAmount.Text = (editQuantity.Text) * (TextBox2.Text)
I think my problem is that I am dealing with text vs numbers and need to understand how to change the text to a number and then do my formula.
Can anyone point me in the correct direction.