postmanphat
Technical User
I want to count how many females are coming to a drop-in centre and I want to know how old they are. The follwing query calculates the ages of all the females who have attended from their dob which is stored in the table 'tblcontacts' along with their gender. We know who attended a drop in session because tblContacts.ContactID is recorded in tblDropIn which is the attendance table if you like. This works perfectly - here (basically) is the SQL:
Now then, the problem is this: Assume only 1 20 yr old female comes in that day, but she comes into the centre twice. My query above will report that on that day we had 2 20 yr old females come through the door, when it really should only tell me that 1 20 yr old female came through the door. The fact that she came in twice is unimportant. I want to know how many unique people came on a given day.
Many many many thanks in advance
Code:
SELECT DateDiff("yyyy",[tblcontacts].[dob],Now())+Int(Format(Now(),"mmdd")<Format([tblcontacts].[dob],"mmdd")) AS Age, Sum(IIf([tblcontacts].[gender]='f',1,0)) AS Female
FROM tblContacts INNER JOIN tblDropIn ON tblContacts.ContactID = tblDropIn.ContactID
WHERE (((tblContacts.ContactID) In (select ContactiD from tblDropIn)))
GROUP BY DateDiff("yyyy",[tblcontacts].[dob],Now())+Int(Format(Now(),"mmdd")<Format([tblcontacts].[dob],"mmdd")), tblDropIn.Adult
HAVING (((tblDropIn.Adult)=False));
Now then, the problem is this: Assume only 1 20 yr old female comes in that day, but she comes into the centre twice. My query above will report that on that day we had 2 20 yr old females come through the door, when it really should only tell me that 1 20 yr old female came through the door. The fact that she came in twice is unimportant. I want to know how many unique people came on a given day.
Many many many thanks in advance