In Access 2000 I have a form what contains 3 numerical fields, Quantity, Price & Factor.
Generally the result will be Quantity * Price, but I never know if the factor is to be multiplied or divided into this result. I have placed a combo box, called cboFactor, on the form whose row source is "*";"/";"+";"-"
I want to add a text field with the following control source:
=[Quantity]*[Price] & [cboFactor] & [Factor]
eg 10 * 3 / 2 or 10 * 4 / 8
What is the correct syntax to do this? Can I do it!?
Generally the result will be Quantity * Price, but I never know if the factor is to be multiplied or divided into this result. I have placed a combo box, called cboFactor, on the form whose row source is "*";"/";"+";"-"
I want to add a text field with the following control source:
=[Quantity]*[Price] & [cboFactor] & [Factor]
eg 10 * 3 / 2 or 10 * 4 / 8
What is the correct syntax to do this? Can I do it!?