postmanphat
Technical User
Hi I posted a similar problem a little while ago ( whilst you kind people successfully sorted it out then, unfortuantely I can't seem to fix a similar problem.
I use a db to record how many people come into a drop-in centre. This code counts how many males and females contact us and how (InterventionID)
This gives me a count of how many people contact the centre. If 4 different males come in on one day, the query quite correctly returns '4' in the males column. However, if the same male comes in 4 times, the query still says 4 males contacted us that day, but in fact I want it to report that only 1 male came in that day. The fact he came in 4 times is irrelevant.
Hope thats clear.
Many many thanks in advance.
I use a db to record how many people come into a drop-in centre. This code counts how many males and females contact us and how (InterventionID)
Code:
SELECT D.InterventionID, Sum(IIf(C.Gender='M',1,0)) AS Males, Sum(IIf(c.gender='f',1,0)) AS Females
FROM tblDay INNER JOIN (tblContacts AS C INNER JOIN tblDropIn AS D ON C.ContactID = D.ContactID) ON tblDay.DayID = D.DayID
WHERE (((tblDay.SessionDate) Between [Forms]![frmStatDate]![Text1] And [Forms]![frmStatDate]![Text3]) AND ((D.Adult)=False))
GROUP BY D.InterventionID;
This gives me a count of how many people contact the centre. If 4 different males come in on one day, the query quite correctly returns '4' in the males column. However, if the same male comes in 4 times, the query still says 4 males contacted us that day, but in fact I want it to report that only 1 male came in that day. The fact he came in 4 times is irrelevant.
Hope thats clear.
Many many thanks in advance.