R
Rudi
Hello. I have a question regarding calculations in a report.
Here is my situation: I have a table named User that contains all of my
User information (User_ID, Name, ..., Marital_status). A user can be
single, married, ... I have created (with the help of some good people,
here at the ms.public.access.reports google group:
http://groups.google.com/group/micr...s/browse_thread/thread/27af44866d2758f8?hl=sl)
a query that counts the number of single users, married users, ...
and I have transfered this info to a report.
Now I would like to make a calculation on my report. I would like to
divide the number of single and the number of married users. And I
would like to have this result on the same report I have allready
created.
Any easy way to do this?
Thank you
Rudi
Here is my situation: I have a table named User that contains all of my
User information (User_ID, Name, ..., Marital_status). A user can be
single, married, ... I have created (with the help of some good people,
here at the ms.public.access.reports google group:
http://groups.google.com/group/micr...s/browse_thread/thread/27af44866d2758f8?hl=sl)
a query that counts the number of single users, married users, ...
SELECT Users.Marital_status, Count(Users.User_ID) AS CountOfUser_ID
FROM Posta
GROUP BY Users.Marital_status;
and I have transfered this info to a report.
Now I would like to make a calculation on my report. I would like to
divide the number of single and the number of married users. And I
would like to have this result on the same report I have allready
created.
Any easy way to do this?
Thank you
Rudi