J
Joe
I have a medical database containing (amongst others) a history of injury
field (text), body region and attending dates. I have the following query
that returns records based on user criteria...
SELECT [Patient Treatments Table].history, [Patient Treatments
Table].body_part, [Patient Treatments Table].last_attendance
FROM [Patient Treatments Table]
WHERE ((([Patient Treatments Table].history) Like "*" & [Search For
Mechanism:] & "*") AND (([Patient Treatments Table].body_part) Like "*" &
[Body Part:] & "*") AND (([Patient Treatments Table].last_attendance) Between
[Enter Start Date:] And [Enter End Date:]));
In attempting to use COUNT fx I get a single count for each unique record
but not totalled as I would like. Also I have not figured out how to get a
total of the whole record pool contained between the date criteria. I would
really like to be able to say that between certain dates x number of clients
presented for care following a 'fall' which represented y% of the total
presentations for the month.
Please could someone point me in the right direction?
field (text), body region and attending dates. I have the following query
that returns records based on user criteria...
SELECT [Patient Treatments Table].history, [Patient Treatments
Table].body_part, [Patient Treatments Table].last_attendance
FROM [Patient Treatments Table]
WHERE ((([Patient Treatments Table].history) Like "*" & [Search For
Mechanism:] & "*") AND (([Patient Treatments Table].body_part) Like "*" &
[Body Part:] & "*") AND (([Patient Treatments Table].last_attendance) Between
[Enter Start Date:] And [Enter End Date:]));
In attempting to use COUNT fx I get a single count for each unique record
but not totalled as I would like. Also I have not figured out how to get a
total of the whole record pool contained between the date criteria. I would
really like to be able to say that between certain dates x number of clients
presented for care following a 'fall' which represented y% of the total
presentations for the month.
Please could someone point me in the right direction?