B
Boss
Hi,
I have a master table (Two column) with ProjectID as primary key and
received date as second column.
ProjectID Received date
1 10-07-06
2 12-11-07
3 01-03-08
4 11-05-08
5 10-07-09
I need to find out the number of project started and the cumulative count on
each month in the past years.
How should i go about this... pls help...
SELECT Year(Master![Received Date]) AS Expr1, Format(Master![Received
Date],"mmmm") AS Expr2, [Expr1] & " " & [Expr2] AS [Month-Year],
Master.[ProjectID], Month(Master![Received Date]) AS Expr3
FROM Master;
After this query i again run a new query to get count of project for each
month. I know there is a better way to do this...
Guys also help for getting the cumulative count of projects.
I have about 500 rows in table. Thx!
Thanks!
Boss
I have a master table (Two column) with ProjectID as primary key and
received date as second column.
ProjectID Received date
1 10-07-06
2 12-11-07
3 01-03-08
4 11-05-08
5 10-07-09
I need to find out the number of project started and the cumulative count on
each month in the past years.
How should i go about this... pls help...
SELECT Year(Master![Received Date]) AS Expr1, Format(Master![Received
Date],"mmmm") AS Expr2, [Expr1] & " " & [Expr2] AS [Month-Year],
Master.[ProjectID], Month(Master![Received Date]) AS Expr3
FROM Master;
After this query i again run a new query to get count of project for each
month. I know there is a better way to do this...
Guys also help for getting the cumulative count of projects.
I have about 500 rows in table. Thx!
Thanks!
Boss