How do I indicate grouping in Access

  • Thread starter Thread starter vince w
  • Start date Start date
V

vince w

select ? as the entry in the Total row for the field to be used for grouping
 
Care to expand on your question? I'm afraid I have no idea what you're
asking!
 
Select GROUP BY under the field if you are in design mode.

If you are doing it in SQL view add a Group By clause.

SELECT Field1, Sum(Field2)
FROM SomeTable
GROUP BY Field1

If neither of those options answers your question, then perhaps you can
expand your question with a bit more detail as to what you want.



'====================================================
John Spencer
Access MVP 2002-2005, 2007-2008
The Hilltop Institute
University of Maryland Baltimore County
'====================================================
 

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

Similar Threads

Union and group, then count 1
People in Groups 8
Option Group 22
Distinct Count in Crosstab 1
Adding a total to my grouping 1
"Group by" confusion in query 13
Access Sorting and grouping using multiple tables 0
Report Group Count? 2

Back
Top