Sum Calc

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

Guest

When I run the query below, it asks me to enter a parameter value for
Fin_Asst. before it completes the query. How do I get it to stop asking for
the value?

Below is the query:

SELECT SUM(Fin_Asst.Granted) AS [Sum of County]
FROM Fin_Asst
GROUP BY Fin_Asst;
 
Your query works just fine for me, provided that 'Fin_Asst' is the name of a
field within the table as well as the name of the table. The query wouldn't
make sense if 'Fin_Asst' was *not* the name of a field.
 

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