Simple Countif Formula

kelscot30

New Member
Joined
Nov 24, 2009
Messages
21
HI guys,

Apologies this is a simple one! Had this formula before but I am getting an error so going wrong somewhere!

Trying to countif column has a name and another column has a yes, basically telling me how many times Tom tagged a YES to a call he made. I have tried a few variations on the below:

=sumif(J:J,"tom")*(L:L,"YES"))

But none of the above work!

Thank you :) x
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
If you are using XL2007 or later you can use COUNTIFS

=COUNTIFS(J:J,"tom",L:L,"YES")

else use Sumproduct:

=SUMPRODUCT(--($J$1:$J$10="tom"),--($L$1:$L$10="YES"))

adjust ranges to suit. Can't use whole columns with Sumproduct in pre-XL2007
 
Upvote 0
Guys as always yous are amazing! I should come here before I boggle my brain for half an hour but like to give it a bash myself first lol

Thanks again, have a nice weekend xxxxxxx
 
Upvote 0

Forum statistics

Threads
1,224,613
Messages
6,179,896
Members
452,948
Latest member
Dupuhini

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