Multiple countif question

Dashiz

New Member
Joined
Nov 30, 2017
Messages
6
Hello guys, I have question for my following issue:

I'm trying to figure out the amount of emails registered from each email domain by month, the information I have is Column A the dates of creating (for example(01/01/13))
and in column B I the emails ex (john@gmail.com, richard@hotmail.com, kitcat@gmail.com, etc), this is the COUNTIFS I've been trying: =COUNTIFS($P$6:$Q$9, F$8, L8:L11, K8) where $P$6:$Q$9, is an extra table I made for detaching the email handle from the domain which goes something like this: =RIGHT(C3,LEN(C3)-FIND("@",C3)) and L8:L11 corr to an extra month table that I also made it goes something like =MONTH(A#) . Whoever I'm getting a value error with =COUNTIFS($P$6:$Q$9, F$8, L8:L11, K8) , without the second criteria I get results but only by edom and doesn't take in consideration the months.
Any tips? Thank you guys!
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
COUNTIFS needs to have all ranges the same dimensions, so you need to only use column P or Q like, for example

=COUNTIFS($P$6:$P$9, F$8, L6:L9, K8)

If you have domains in both columns then perhaps try

=COUNTIFS($P$6:$P$9, F$8, L6:L9, K8)+COUNTIFS($Q$6:$Q$9, F$8, L6:L9, K8)
 
Last edited:
Upvote 0

Forum statistics

Threads
1,223,896
Messages
6,175,265
Members
452,627
Latest member
KitkatToby

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