Multiple criteria COUNTIFS with distinct values

tonyhill65

New Member
Joined
Jun 6, 2024
Messages
2
Office Version
  1. 365
Platform
  1. Windows
Using excel 365
I have an enquiries received database with multiple columns of information
I have an existing formula that counts how many quotes an estimator has issued in a month
=COUNTIFS($AF:$AF,">="&M$4,$AF:$AF,"<="&M$5,$AN:$AN,$B46)
where $AF is the date sent column, M$4 is for example 1st April and M$5 is 30th April, $AN holds the estimator's name and $B46 also holds the estimator's name - we use this as a compare to or filter.

this all works fine except when we send the same quote to multiple customers. For us thats 1 quote issued. However if we were to send the same quote to 3 customers the formula returns 3 and not 1.
So we need to add in to return only distinct values (I think thats the right term)

We have a quote ID column that has a quote number in. Starts at 1 and increases for each quote we issue. When we issue the same quote to multiple customers each row has the same quote ID number. This column is $AC

I've been trying with UNIQUE(array), but can't get that to work as COUNTIFS requires a criteria after the range, Also have been trying to include 1/COUNTIFS(array etc., but also get errors with that.

I'd appreciate any help you can offer.
 

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
Hi & welcome to MrExcel.
How about
Excel Formula:
=ROWS(UNIQUE(FILTER(AC:AC,($AF:$AF>=M$4)*($AF:$AF<=M$5)*($AN:$AN=$B46))))
Although it's best to limit the rows, rather than using entire columns.
 
Upvote 0
Solution
Hi & welcome to MrExcel.
How about
Excel Formula:
=ROWS(UNIQUE(FILTER(AC:AC,($AF:$AF>=M$4)*($AF:$AF<=M$5)*($AN:$AN=$B46))))
Although it's best to limit the rows, rather than using entire columns.
Oh, Wow!, Fluff that works like a dream

I added row numbers as you suggested and quickly tested on each month. Boom!

thank you so much.
 
Upvote 0
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,223,884
Messages
6,175,175
Members
452,615
Latest member
bogeys2birdies

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