If you're just wanting to see the totals in a form, calculate what you want
to see in the form instead of in the query.
To do this, create an unbound text box and set its control source to
calculate the totals for you. For instance setting a control source to
=Count([ClientName]) would count all of the the records that have a value in
ClientName. Setting one to =Sum([ItemCost]) would add all of the ItemCosts
together.
This approach would work so long as you don't mind the totals changing if
you apply a filter on your form. Because if you have 95 records when you open
the form, Count([ClientName]) would show 95, but then if you applied a filter
on your form that limited what is shown to 14 records, then
Count([ClientName]) would only show 14.
Replace ClientName and/or ItemCost with the field names you want your
calculations based on.