J Jesmine Registered User. Local time Today, 07:42 Joined Sep 7, 2004 Messages 10 Sep 22, 2004 #1 Help about counting!!!! Hello, I have students table and I want to make one report that gives me the number of males and females, is that possible??? Thx in advance Zena Last edited: Sep 22, 2004
Help about counting!!!! Hello, I have students table and I want to make one report that gives me the number of males and females, is that possible??? Thx in advance Zena
RichO Registered Yoozer Local time Yesterday, 23:42 Joined Jan 14, 2004 Messages 1,036 Sep 23, 2004 #2 This is assuming you have a field [Gender] that specifies gender: I would suggest to start with a simple totals query: SELECT Count(*) AS GenderCount, MyStudentTable.Gender FROM MyStudentTable GROUP BY MyStudentTable.Gender; And then write a report based on that query.
This is assuming you have a field [Gender] that specifies gender: I would suggest to start with a simple totals query: SELECT Count(*) AS GenderCount, MyStudentTable.Gender FROM MyStudentTable GROUP BY MyStudentTable.Gender; And then write a report based on that query.
J Jesmine Registered User. Local time Today, 07:42 Joined Sep 7, 2004 Messages 10 Sep 24, 2004 #3 thx Thank you RichO... your simple totals query fixed my problem... once again thank you very much Zena Last edited: Sep 24, 2004
thx Thank you RichO... your simple totals query fixed my problem... once again thank you very much Zena