Ordered Count for each Unique Entry

erahi

New Member
Joined
Jul 9, 2012
Messages
9
I have data in longitudinal format for patients. Each row denotes a treatment with patient column for Patient ID and date of treatment. I need a formula to work out an ordered count for each patient for their first treatment, second treatment, third treatment etc.
 
Last edited:

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
[TABLE="width: 505"]
<tbody>[TR]
[TD="align: center"]Patient ID
[/TD]
[TD="align: center"]Date
[/TD]
[TD="align: center"]Ordered Count[/TD]
[TD="align: center"]Explanation
[/TD]
[/TR]
[TR]
[TD="align: center"]Patient 1[/TD]
[TD="align: center"]25/05/2017[/TD]
[TD="align: center"]1[/TD]
[TD="align: center"]Patient 1 treatment 1[/TD]
[/TR]
[TR]
[TD="align: center"]Patient 3[/TD]
[TD="align: center"]28/05/2017[/TD]
[TD="align: center"]1[/TD]
[TD="align: center"]Patient 3 treatment 1[/TD]
[/TR]
[TR]
[TD="align: center"]Patient 1[/TD]
[TD="align: center"]03/06/2017[/TD]
[TD="align: center"]2[/TD]
[TD="align: center"]Patient 1 treatment 2[/TD]
[/TR]
[TR]
[TD="align: center"]Patient 3[/TD]
[TD="align: center"]15/06/2017[/TD]
[TD="align: center"]2[/TD]
[TD="align: center"]Patient 3 treatment 2[/TD]
[/TR]
[TR]
[TD="align: center"]Patient 4[/TD]
[TD="align: center"]18/07/2017[/TD]
[TD="align: center"]1[/TD]
[TD="align: center"]Patient 4 treatment 1[/TD]
[/TR]
[TR]
[TD="align: center"]Patient 1[/TD]
[TD="align: center"]20/07/2017[/TD]
[TD="align: center"]3[/TD]
[TD="align: center"]Patient 1 treatment 3[/TD]
[/TR]
[TR]
[TD="align: center"]Patient 1[/TD]
[TD="align: center"]23/07/2017[/TD]
[TD="align: center"]4[/TD]
[TD="align: center"]Patient 1 treatment 4[/TD]
[/TR]
[TR]
[TD="align: center"]Patient 4[/TD]
[TD="align: center"]27/07/2017[/TD]
[TD="align: center"]2[/TD]
[TD="align: center"]Patient 4 treatment 2[/TD]
[/TR]
[TR]
[TD="align: center"]Patient 3[/TD]
[TD="align: center"]15/08/2017[/TD]
[TD="align: center"]3[/TD]
[TD="align: center"]Patient 3 treatment 3[/TD]
[/TR]
[TR]
[TD="align: center"]Patient 2[/TD]
[TD="align: center"]16/08/2017[/TD]
[TD="align: center"]1[/TD]
[TD="align: center"]Patient 2 treatment 1[/TD]
[/TR]
[TR]
[TD="align: center"]Patient 1[/TD]
[TD="align: center"]10/09/2017[/TD]
[TD="align: center"]5[/TD]
[TD="align: center"]Patient 1 treatment 5[/TD]
[/TR]
[TR]
[TD="align: center"]Patient 2[/TD]
[TD="align: center"]01/10/2017[/TD]
[TD="align: center"]2[/TD]
[TD="align: center"]Patient 2 treatment 2[/TD]
[/TR]
[TR]
[TD="align: center"]Patient 3[/TD]
[TD="align: center"]12/10/2017[/TD]
[TD="align: center"]4[/TD]
[TD="align: center"]Patient 3 treatment 4[/TD]
[/TR]
[TR]
[TD="align: center"]Patient 1[/TD]
[TD="align: center"]01/11/2017[/TD]
[TD="align: center"]6[/TD]
[TD="align: center"]Patient 1 treatment 6[/TD]
[/TR]
[TR]
[TD="align: center"]Patient 2[/TD]
[TD="align: center"]04/11/2017[/TD]
[TD="align: center"]3[/TD]
[TD="align: center"]Patient 2 treatment 3[/TD]
[/TR]
</tbody>[/TABLE]

The data can be sorted in any way, the formula continues to work

Formula in C2 copied down
=COUNTIFS(A:A,A2,B:B,"<"&B2)+1

Formula in D2 copied down
=A2&" treatment " &COUNTIFS(A:A,A2,B:B,"<"&B2)+1
 
Upvote 0

Forum statistics

Threads
1,223,228
Messages
6,170,871
Members
452,363
Latest member
merico17

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