Count only Unique criteria

mduntley

Board Regular
Joined
May 23, 2015
Messages
139
Office Version
  1. 365
Platform
  1. Windows
Hello,

I am trying to figure out a IF formula to say how may criteria mach with some codes. I have made a simple graph. Goal is to find a patient with two Codes specific codes, which is 96365 and J0984

[TABLE="class: grid, width: 319"]
<colgroup><col span="2"><col></colgroup><tbody>[TR]
[TD]Location[/TD]
[TD]Patient ID[/TD]
[TD]Code[/TD]
[/TR]
[TR]
[TD]Hospital 1[/TD]
[TD]1[/TD]
[TD]96365[/TD]
[/TR]
[TR]
[TD]Hospital 1[/TD]
[TD]2[/TD]
[TD]96365[/TD]
[/TR]
[TR]
[TD]Hospital 1[/TD]
[TD]2[/TD]
[TD]J0984[/TD]
[/TR]
[TR]
[TD]Hospital 1[/TD]
[TD]4[/TD]
[TD]96365[/TD]
[/TR]
[TR]
[TD]Hospital 1[/TD]
[TD]3[/TD]
[TD]96365[/TD]
[/TR]
[TR]
[TD]Hospital 1[/TD]
[TD]3[/TD]
[TD]J0984[/TD]
[/TR]
[TR]
[TD]Hospital 1[/TD]
[TD]5[/TD]
[TD]96365[/TD]
[/TR]
[TR]
[TD]Hospital 2[/TD]
[TD]6[/TD]
[TD]96365[/TD]
[/TR]
[TR]
[TD]Hospital 2[/TD]
[TD]6[/TD]
[TD]J0984[/TD]
[/TR]
[TR]
[TD]Hospital 2[/TD]
[TD]7[/TD]
[TD]96365[/TD]
[/TR]
[TR]
[TD]Hospital 2[/TD]
[TD]7[/TD]
[TD]J0987[/TD]
[/TR]
[TR]
[TD]Hospital 2[/TD]
[TD]9[/TD]
[TD]96365[/TD]
[/TR]
[TR]
[TD]Hospital 2[/TD]
[TD]10[/TD]
[TD]96365[/TD]
[/TR]
[TR]
[TD]Hospital 2[/TD]
[TD]10[/TD]
[TD]J0984[/TD]
[/TR]
[TR]
[TD]Hospital 2[/TD]
[TD]11[/TD]
[TD]96365[/TD]
[/TR]
[TR]
[TD]Hospital 2[/TD]
[TD]12[/TD]
[TD]96365[/TD]
[/TR]
[TR]
[TD]Hospital 2[/TD]
[TD]12[/TD]
[TD]J0984[/TD]
[/TR]
</tbody>[/TABLE]


Results that i want.
[TABLE="class: grid, width: 132"]
<colgroup><col><col></colgroup><tbody>[TR]
[TD]Hospital 1[/TD]
[TD="align: right"]2[/TD]
[/TR]
[TR]
[TD]Hospital 2[/TD]
[TD="align: right"]3[/TD]
[/TR]
</tbody>[/TABLE]


I have tried to use counties, but with that it will count each rows, which will make hospital 1 to have 4, when i want to see how many patients, so we see 2 patients match this criteria
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
Maybe something like this.
This is an array formula and must be entered with CTRL-SHIFT-ENTER.
Drag formula down as needed.
Excel Workbook
ABC
1LocationPatient IDCode
2Hospital 1196365
3Hospital 1296365
4Hospital 12J0984
5Hospital 1496365
6Hospital 1396365
7Hospital 13J0984
8Hospital 1596365
9Hospital 2696365
10Hospital 26J0984
11Hospital 2796365
12Hospital 27J0987
13Hospital 2996365
14Hospital 21096365
15Hospital 210J0984
16Hospital 21196365
17Hospital 21296365
18Hospital 212J0984
19
20
21Hospital 12
22Hospital 23
Sheet
 
Upvote 0
That is good, but it does not reference the patient column., if you change the code for hospital 2 patient 7 to J0984, the value for hospital 2 will go down to 2 when it should go to 4
 
Last edited:
Upvote 0

Forum statistics

Threads
1,223,227
Messages
6,170,848
Members
452,361
Latest member
d3ad3y3

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