hii.. i have a table<"form"> in ms access which have following fields..
formno, location , status.

i want to create a report which calculate
1. the total no of forms(columns) at each location
2. the total no of forms(columns) with status= "pending" at each location.

i tried to do it with this query
1. select count(formno) as totalforms
from form
group by location;

2. select count(formno) as pendingforms
from form
group by location
WHERE status = 'pending';

now i would like to display the result on a page, but i dont know how to get the name of location for which the result is being displayed.
i.e in the format

location total forms pending forms


now i get the the two counts .. but how can i get the location....


plzzz help...
thanks a lot!!!

Recommended Answers

All 2 Replies

harshit99, i'm sorry, i wasn't able to understand what was your question. Please be more coherent in thoughts and words.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.