Identify values with more than one date associated

agriswold

New Member
Joined
Jul 27, 2018
Messages
5
Hello,
I have a list of people who took an action and the date onwhich the action was performed. Some people have the same date listed formultiple actions, others have more than one date for multiple actions. I need toidentify (maybe in a new column so it can be sorted/counted in a pivot table)if a person took an action on more than one day. Any suggestions are greatlyappreciated!

 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
If you only have 3 columns, people, date and action couldn't you create a table directly from that to show the no of times a person took an action?
 
Upvote 0
If you only have 3 columns, people, date and action couldn't you create a table directly from that to show the no of times a person took an action?

Thanks for your response! I only need to count the number of people who took an action on more than one day, not the total number of times they took an action.
 
Upvote 0
Can you post some sample data?
 
Upvote 0
Can you post some sample data?

Action DatePerson
6/11/2018John Smith
6/11/2018John Smith
6/11/2018John Smith
6/11/2018Sue Smith
6/11/2018Sue Smith
6/12/2018Sue Smith
6/12/2018Sue Smith
6/12/2018Sue Smith
6/12/2018Sue Smith
6/12/2018Sue Smith
6/12/2018Sue Smith
6/12/2018Joe Brown
6/12/2018Joe Brown
6/12/2018Joe Brown
6/12/2018Jane Brown
6/12/2018Jane Brown
6/12/2018Jane Brown
6/13/2018Jane Brown
6/13/2018Jane Brown
6/13/2018Jane Brown
<colgroup><col width="174" style="width: 131pt; mso-width-source: userset; mso-width-alt: 6363;"> <col width="230" style="width: 173pt; mso-width-source: userset; mso-width-alt: 8411;"> <tbody> </tbody>
In this example I would want to count Sue Smith and Jane Brown because they made actions on more than one date.
 
Upvote 0
Maybe with a helper column


A
B
C
1
Action Date​
Person​
Helper​
2
11/06/2018​
John Smith​
3
11/06/2018​
John Smith​
4
11/06/2018​
John Smith​
5
11/06/2018​
Sue Smith​
x​
6
11/06/2018​
Sue Smith​
7
12/06/2018​
Sue Smith​
8
12/06/2018​
Sue Smith​
9
12/06/2018​
Sue Smith​
10
12/06/2018​
Sue Smith​
11
12/06/2018​
Sue Smith​
12
12/06/2018​
Sue Smith​
13
12/06/2018​
Joe Brown​
14
12/06/2018​
Joe Brown​
15
12/06/2018​
Joe Brown​
16
12/06/2018​
Jane Brown​
x​
17
12/06/2018​
Jane Brown​
18
12/06/2018​
Jane Brown​
19
13/06/2018​
Jane Brown​
20
13/06/2018​
Jane Brown​
21
13/06/2018​
Jane Brown​

Formula in C2 copied down
=IF(COUNTIF(B$2:B2,B2)=1,IF(COUNTIFS(B:B,B2,A:A,"<>"&A2),"x",""),"")

Hope this helps

M.
 
Upvote 0

Forum statistics

Threads
1,214,378
Messages
6,119,188
Members
448,873
Latest member
jacksonashleigh99

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top