Hello,
I have the follow data:
ID Begin_date End_date
1 20050701 20050731
1 20051101 20051231
2 20050801 20051130
I would like the number of occurrences in the month from 7/1/2005 to 5/31/2006. From the above example, the result would be:
YYYYMM Count
200507 1
200508 1
200509 1
200510 1
200511 2
200512 2
Maybe I need to break the data into each individual month, if so how do I do that?
Thank you for any assistance
I have the follow data:
ID Begin_date End_date
1 20050701 20050731
1 20051101 20051231
2 20050801 20051130
I would like the number of occurrences in the month from 7/1/2005 to 5/31/2006. From the above example, the result would be:
YYYYMM Count
200507 1
200508 1
200509 1
200510 1
200511 2
200512 2
Maybe I need to break the data into each individual month, if so how do I do that?
Thank you for any assistance