Tricky summation

Ibero

Registered User.
Local time
Today, 14:29
Joined
Feb 11, 2008
Messages
12
Hello all,

My problem includes these 3 main tables:
Clients, Beneficiaries, Visits
1 client has many beneficiaries but when I log the visit, it’s logged [with a date] PER client not per each beneficiary. Therefore, there is not direct relationship between beneficiaries and visits, it is through Clients.

I am trying to make a query expression to count beneficiaries as follows: If the client had at least 1 visit in 2011 (based on the visit date) then sum the beneficiaries. In other words, even if the client visited 15 times that year, I want to sum his beneficiaries only once for that year.

What I have tried so far: Different variations of this.

Male: Abs(Sum(IIf([Gender]="M" And [Date of Visit]>=#1/1/2011# And [Date of Visit]<=#12/31/2011#,True)))

^Firstly, that only works with Client, not beneficiaries. Secondly, It sums 1 client for EACH visit which is not what I want. Ideally, I would like to sum the beneficiaries given a criteria. Or an even better solution would be to sum the beneficiaries + the actual client given the same criteria.

I’ve also tried Dsum but it seems to do the same thing as above and for some reason it keeps erasing itself when I go back to design view (but that’s probably another issue).

What is a good way to get this done? I really appreciate all the help, this is for a non for profit agency.
 
I want the total count of unique beneficiaries for a client with a visit in 2011.

Is that an accurante statement of what you want out of your query? If so, you need 2 queries. The first would be to get the total number of unique beneficiaries for every client:

SELECT ClientID, COUNT(ClientID) AS TotalBeneficiaries FROM Beneficiaries GROUP BY ClientID;

Call that query UniqueBeneficiaries. You then build another query linking that query to your Visits Table.

SELECT Visits.ClientID, UniqueBeneficiaries.TotalBeneficiaries FROM Visits, UniqueBeneficiaries WHERE (Visits.ClientID=UniqueBeneficiaries.ClientID) AND (Year(VisitDate)=2011) GROUP BY Visits.ClientID, UniqueBeneficiaries;
 
Thanks for the reply,

A couple things, I was playing with those quesries the first one works fine, does what it's supposed to. I get a count of beneficiaries for each clientID. The second gives me a "Total beneficiaries not found in expression error". I did maintain those same names for testing.

Also I would modify and add to the initial statement:
I want the total count of unique beneficiaries that are male (or any other field from the beneficiaries table) for a client with a visit in 2011.
 
If its male beneficiaries you would add that criteria to the UniqueBeneficiaries query--bring in the gender field and underneath it make it equal "M".

The initial SQL I posted for the second query is a little wrong, it should be:

SELECT Visits.ClientID, UniqueBeneficiaries.TotalBeneficiaries FROM Visits, UniqueBeneficiaries WHERE (Visits.ClientID=UniqueBeneficiaries.ClientID) AND (Year(VisitDate)=2011) GROUP BY Visits.ClientID, UniqueBeneficiaries.totalBeneficiaries;
 
Great! That one works nice, I now have unique beneficiaries for clients that visited in 2011.

You mentioned to add Male beneficiaries I would add it to the Unique beneficiaries query. I would then have to create a uniquebeneficiaries query for each criteria: one for each gender, one for each income group, one for each ethnicity, etc. That's why I was using an expression for each query column at first to just show the integer for easier reporting. Do you know of a more dynamic way to be able to generate these? My end goal is one report with all these counts: I.E. Count of male/female beneficiaries in 2011, Count of 15k income range 2011 beneficiaries, etc.
 
You could rewrite the UniqueBeneficiaries query to incorporate all those fields. It would now look like this:

SELECT ClientID, COUNT(ClientID) AS TotalBeneficiaries, SUM(IIf([Gender]="M", 1,0)) AS MaleBeneficiaries, SUM(IIf([Gender]="F", 1,0)) AS FemalBeneficiaries, FROM Beneficiaries GROUP BY ClientID;


For every new way you want to carve up your beneficiaries you would add this:

SUM(IIF([Field]=True, 1,0)) AS XXXBeneficiaries
 
Thanks! You have been infinitely helpful...

One last thing, I pretty much have everything I really need working, I'm just wondering about this discrepancy while playing with my options.

What is the difference between this query:

SELECT Visits.[Case Number], UniqueBeneficiaries.TotalBeneficiaries
FROM Visits, UniqueBeneficiaries
WHERE (((Visits.[Case Number])=[UniqueBeneficiaries].[Case Number]) AND ((Year([Date of Visit]))=2011))
GROUP BY Visits.[Case Number], UniqueBeneficiaries.TotalBeneficiaries;

and this expression:
Total: IIf([Visits].[Case Number]=[UniqueBeneficiaries].[Case Number] And Year([Date of Visit]))=2011, Sum([UniqueBeneficiaries].[TotalBeneficiaries]),0)

Both seem to have the same criteria, yet if I sum the query in the datasheet I get 1484 (should be the correct total), and when I sum using the expression I get 884. My idea is to get an expression working so I can put them side in a single query/report. Total | Males | Females.

Thank you again, this is great info.
 
This:

Total: IIf([Visits].[Case Number]=[UniqueBeneficiaries].[Case Number] And Year([Date of Visit]))=2011, Sum([UniqueBeneficiaries].[TotalBeneficiaries]),0)


Isn't parsed correctly, you're misplaced a ')'. Also, you gave me an entire query to compare to just one field. Provide the rest of the SQL for and it might be easier for me to figure out.

Also, once you have the UniqueBeneficiaries set up to show all those different beneficiaries the way you want to display your data should be as easy as bringing in the appropriate fields from UniqueBeneficiaries.
 
Ah yes, you are right. I'm being kicked out of the building now but I will play around with this some more according to what you're saying. I think I over-thought about this last part. I will check back if I have another question after bringing the fields in. Cheers!
 

Users who are viewing this thread

Back
Top Bottom