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.
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.