need help suming a query

S

Steveo

I have a query that displays 10 items. I have the inventory count as the last
column which tells me on the query how many of each item I have in stock. I
am trying to display the total inventory count on a form, any help is
appreciated.
 
S

scubadiver

Create a form with the query as the source. Create an unbound text box and
insert the following:

=sum([your field])

Should work
 
Top