P
Pinacle
I have a table that contains schedule dates entered by user for 'Work Start
Date','Expected Completion Date', 'Completion Date' (3 columns)...I am trying
to summarize the above data and create another table to show the count of
months in column.
I have acheived this by using the below query ...but i am able to run the
query for only one column, i want to summarize all three columns together.
SELECT Count(Format(['Work Start Date],"mmm"))
FROM Emp
GROUP BY Format(['Work Start Date],"mmm");
My O/p should be like this...
Month WorkStDate ExpCompDate CompDate
Jan 1 1 1
Feb 0 1 1
Mar 2 1 1
Apr 4 3 2
Please help me....if you need further information to understand my problem i
am glad to explain.
Thanks in Advance
Date','Expected Completion Date', 'Completion Date' (3 columns)...I am trying
to summarize the above data and create another table to show the count of
months in column.
I have acheived this by using the below query ...but i am able to run the
query for only one column, i want to summarize all three columns together.
SELECT Count(Format(['Work Start Date],"mmm"))
FROM Emp
GROUP BY Format(['Work Start Date],"mmm");
My O/p should be like this...
Month WorkStDate ExpCompDate CompDate
Jan 1 1 1
Feb 0 1 1
Mar 2 1 1
Apr 4 3 2
Please help me....if you need further information to understand my problem i
am glad to explain.
Thanks in Advance