HOW DO I?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

hey guys - i have a form that needs to display a value in a text box. the
value is - budget - qauntity*price

how do i get that value in the text box?

thanks!
 
If the query (or table) on which the form is based has fields named
[budget], [quantity], and [price], you could create a new (unbound) textbox,
and in that textbox's Control Source, put:

= [budget] - [quantity]*[price]

Another way to do this would be to do the calculation in the query on which
you base the form.

Regards

Jeff Boyce
<Office/Access MVP>
 
thanks guys! it worked! i just used the sum part in query instead of group
by.

thanks so much!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top