Hi ,
I have a list of dates :
e.g.
31/12/2003
31/12/2004
01/04/2006
24/04/2006
11/05/2008
21/05/2008
I need to count the occurence of each date (just for months/year)
the result should give me:
Project date Results
1 12/2003 1
2 12/2004 1
3 04/2006 2
4 05/2008 2
I tried to take the month of the date(MONTH(date), then the year (YEAR(date)) then I concatenated both (month and year) and I tried to apply the frequency function but it did not work.
Is there a simple way to do it?
My goal is to ultimatly have a graph that shows the number of projects(Results) per month.
thanks in advance!
I have a list of dates :
e.g.
31/12/2003
31/12/2004
01/04/2006
24/04/2006
11/05/2008
21/05/2008
I need to count the occurence of each date (just for months/year)
the result should give me:
Project date Results
1 12/2003 1
2 12/2004 1
3 04/2006 2
4 05/2008 2
I tried to take the month of the date(MONTH(date), then the year (YEAR(date)) then I concatenated both (month and year) and I tried to apply the frequency function but it did not work.
Is there a simple way to do it?
My goal is to ultimatly have a graph that shows the number of projects(Results) per month.
thanks in advance!