Unbound Equation HELP

ggovensky

Registered User.
Local time
Today, 06:31
Joined
Feb 4, 2003
Messages
18
Hi I have a form in which case I am trying to do a unbound equation. Here it is.

(#of parts * quantity of parts)+(time * #of parts * 20)

The #of Parts is just a text box (text49) that a user would enter in 3 for example in this case. The quanity of parts is a combo box that a user selects (combox56). The time is where a user inputs the amount of time they spent working on the project. (Text56) The number of parts is the same (Text49) box above. And 20 is what I multiply for the PAY rate.

So I would think that a unbound text box would be like

=[Text49]*[Combo46]+[Text56]*[Text49]*20

But this does not work and gives me a #Error in the box. Can someone plese point me in the right direction????

George
 
Try this:


=([Text49]*[Combo46])+([Text56]*[Text49]*20 )
 
Awsome!!!!!!! Thanks alot...
 

Users who are viewing this thread

Back
Top Bottom