Hey!
I wondering if it is possible at all to manipulate the 'Total' function in a form either through VBA or, preferably, through the query itself.
What I'm trying to create is a form that shows figurative data about attendance at a Clinic. There are a few categories that I want it split up by - Gender and Status (and perhaps, further along the line, Age Ranges and Location, but for now, stick with the former two).
The Average function returns the Average value of Session Attendance for:
But what I want to do is to return the values for Both Open, Closed, Male and Female totals. I.e. I want my options to be:
I know that in the query, I can have only Status selected, or only Gender Selected, and it shows data for all under that one category, but I want the option to split it in a form. Also want the option so that if neither 'Gender' nor 'Status are filtered, then it shows the total of everything, rather than splitting it.
Possible? Using Access 2010
I wondering if it is possible at all to manipulate the 'Total' function in a form either through VBA or, preferably, through the query itself.
What I'm trying to create is a form that shows figurative data about attendance at a Clinic. There are a few categories that I want it split up by - Gender and Status (and perhaps, further along the line, Age Ranges and Location, but for now, stick with the former two).
The Average function returns the Average value of Session Attendance for:
Code:
Status Gender
-- --
Open Male
Open Female
Closed Male
Closed Female
Code:
Status Gender
-- --
Open
Closed
Male
Female
Open Male
Open Female
Closed Male
Closed Female
I know that in the query, I can have only Status selected, or only Gender Selected, and it shows data for all under that one category, but I want the option to split it in a form. Also want the option so that if neither 'Gender' nor 'Status are filtered, then it shows the total of everything, rather than splitting it.
Possible? Using Access 2010