Frequency with Multiple Criteria

Moxioron

Active Member
Joined
Mar 17, 2008
Messages
436
Office Version
  1. 2019
Good morning.

I am trying to count the unique values/labels in column A. Here are the specifics:

Column A = Employee Name
Column Q = Queue Name
Column S = Date

I have tried these two thus far and am met with zero as a result (which isn't correct):

{=SUM(IF(FREQUENCY(IF(Detail!$Q$6:$Q$25000=B20,IF(Detail!$S$6:$S$25000>=$E$15,IF(Detail!$S$6:$S$25000<=$F$15,Detail!$A$6:$A$25000))),Detail!$A$6:$A$250000),1))}
{=COUNT(IF(FREQUENCY(IF(Detail!$Q$6:$Q$25000=B20,IF(Detail!$S$6:$S$25000>=$E$15,IF(Detail!$S$6:$S$25000<=$F$15,Detail!$A$6:$A$25000))),Detail!$A$6:$A$25000),1))}

Where am I going awry? Thanks.
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
How about:

=SUM(SIGN(FREQUENCY(IF(Detail!$Q$6:$Q$25000=B20,IF(Detail!$S$6:$S$25000>=$E$15,IF(Detail!$S$6:$S$25000<=$F$15,MATCH(Detail!$A$6:$A$25000,Detail!$A$6:$A$25000,0)))),ROW(Detail!$A$6:$A$25000)-ROW($A$6)+1)))

The main thing you were missing was the MATCH function, and adjusting the row range in the second FREQUENCY array.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,456
Messages
6,124,939
Members
449,197
Latest member
k_bs

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