Countif without duplicates?

Jed Shields

Active Member
Joined
Sep 7, 2011
Messages
283
Office Version
  1. 365
Platform
  1. Windows
Hello all,

I'm trying to do a count of records that are "In Process" in column J, but only count once for each PR reference in column Q. For example, there may be 4 "In Process" records, but three have PR1 and one has PR2, so I'd want to count 2 i.e. not count the duplicates.

Cheers,

Jed
 

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
Care to post 4 records from J and Q as it's not clear what range must be counted?

I'll try and make it clearer, and to simplify it I'll go with columns A and B:

In ProcessPR1
In ProcessPR1
On HoldPR3
In ProcessPR2
On HoldPR4

<colgroup><col style="mso-width-source:userset;mso-width-alt:3474;width:71pt" width="95"> <col style="width:48pt" width="64"> </colgroup><tbody>
</tbody>

So in the above table, I want to count all "In Process" records in Col A but ignore duplicate PR numbers in Col B. There are two In Process with PR1, so I only want to count one of them. The other In Process is PR2, so I want to count that as well. So three in total.
 
Upvote 0
Thanks for the sample.

Control+shift+enter, not just enter:

=SUM(IF(FREQUENCY(IF($B$2:$B$6<>"",IF($A$2:$A$6="in process",MATCH($B$2:$B$6,$B$2:$B$6,0))),ROW($B$2:$B$6)-ROW($B$2)+1),1))
 
Upvote 0
One more question... I also need to count a subset of this based on a date in column C. For example, where the date is greater than 31/1/18 and less than 30/6/18...
 
Upvote 0
One more question... I also need to count a subset of this based on a date in column C. For example, where the date is greater than 31/1/18 and less than 30/6/18...


Control+shift+enter:


=SUM(IF(FREQUENCY(IF($A$2:$A$6="in process",IF($B$2:$B$6<>"",IF($C$2:$C$6 > "31/1/18"+0,IF($C$2:$C$6 < "30/6/18"+0,MATCH($B$2:$B$6,$B$2:$B$6,0))))),ROW($B$2:$B$6)-ROW($B$2)+1),1))
 
Upvote 0
Back again!

The above has been working perfectly, modified formula below for a different workbook:

={SUM(IF(FREQUENCY(IF('Raw Data'!$M$2:$M$10000="inprocess",IF('Raw Data'!$W$2:$W$10000<>"-",IF('RawData'!$AT$2:$AT$10000 = $AG2,MATCH('Raw Data'!$X$2:$X$10000,'RawData'!$X$2:$X$10000,0)))),ROW('Raw Data'!$X$2:$X$10000)-ROW('RawData'!$X$2)+1),1))}

Basically, looking for “In Process” in column M, “-“ incolumn W, Department Name in column AT and then counting any unique instances in column X (PO number).


I now need to try and work out the Average Days, which is found in column AU.


Any ideas how I do this? I’m assuming that I’ll need to amend the above formula to find and add the Days for each line in the array and then divide by the original formula. It’s working out how to add the Day part that I’m stuck on…
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,651
Messages
6,120,744
Members
448,989
Latest member
mariah3

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