Stephen_IV
Well-known Member
- Joined
- Mar 17, 2003
- Messages
- 1,180
- Office Version
- 365
- 2019
- Platform
- Windows
This is a small sample of the data that I have. I sorted the data based on Activity and then Date. What I am trying to do is to number each activity based on date. So
on 8/26/2010 activity A occured which makes occurance 1
on 11/2/2010 activity A occured so that is the second occurance.
Here is another example
on 8/26/2011 Activity B occured which makes the first occurance
on 11/2/2010 Activity B occured which makes the second occurance
on 11/3/2010 Activity B occured which makes the third occurance
on 11/4/2010 Activity B occured which makes the forth occurance
Below is a sample of how I would like the data layed out.
Thanks in advance Stephen.
on 8/26/2010 activity A occured which makes occurance 1
on 11/2/2010 activity A occured so that is the second occurance.
Here is another example
on 8/26/2011 Activity B occured which makes the first occurance
on 11/2/2010 Activity B occured which makes the second occurance
on 11/3/2010 Activity B occured which makes the third occurance
on 11/4/2010 Activity B occured which makes the forth occurance
Below is a sample of how I would like the data layed out.
Thanks in advance Stephen.
Book1 | ||||||
---|---|---|---|---|---|---|
A | B | C | D | |||
1 | Date | Activity | Count | |||
2 | 8/26/2010 | a | 1 | |||
3 | 8/26/2010 | a | 1 | |||
4 | 8/26/2010 | a | 1 | |||
5 | 8/26/2010 | a | 1 | |||
6 | 8/26/2010 | a | 1 | |||
7 | 8/26/2010 | a | 1 | |||
8 | 11/2/2010 | a | 2 | |||
9 | 11/2/2010 | a | 2 | |||
10 | 11/2/2010 | a | 2 | |||
11 | 11/2/2010 | a | 2 | |||
12 | 11/2/2010 | a | 2 | |||
13 | 11/2/2010 | a | 2 | |||
14 | 8/26/2010 | b | 1 | |||
15 | 8/26/2010 | b | 1 | |||
16 | 11/2/2010 | b | 2 | |||
17 | 11/2/2010 | b | 2 | |||
18 | 11/2/2010 | b | 2 | |||
19 | 11/3/2010 | b | 3 | |||
20 | 11/3/2010 | b | 3 | |||
21 | 11/4/2010 | b | 4 | |||
22 | 11/4/2010 | b | 4 | |||
23 | 9/14/2011 | c | 1 | |||
24 | 9/14/2011 | c | 1 | |||
25 | 9/15/2011 | c | 1 | |||
26 | 9/16/2011 | c | 2 | |||
27 | 9/17/2011 | c | 3 | |||
28 | 9/18/2011 | c | 4 | |||
29 | 9/19/2011 | c | 5 | |||
Sheet6 |