Count in a Col depending on another column?

HuskyJones

New Member
Joined
Sep 30, 2015
Messages
45
Office Version
  1. 365
Platform
  1. Windows
Hi Folks
Having a brain fart......
On my "counts" sheet I want to get the number from a column in my KCPs sheet but only to be counted if cells another column in KCPs contains a specific value (T1).....
I thought this
=COUNTIFS(KCPs!$H$2:$H$10000,"T1",KCPs!$K2:$K10000,<>"")

(My K column is weight, My H column is Type and i want a count of T1 with weight, then i'll repeat for T2)

I know my brain is farting but can't see it for looking :mad:

Thanks ever knowing peeps :beerchug:
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
nope's still get the "problem with formula" message :(
Thanks though
 
Upvote 0
The issue is with your last argument.
Try:
Code:
[COLOR=#333333]=COUNTIFS(KCPs!$H$2:$H$10000,"T1",KCPs!$K2:$K10000,[/COLOR][COLOR=#ff0000]"<>"[/COLOR][COLOR=#333333])[/COLOR]
If you are looking the for specific value "T1", use quotes around that.
If you are looking for the value in cell T1, leave the quotes off. It doesn't matter if T1 is hard-coded or a formula, as long as it is not returning an error in that cell.
 
Last edited:
Upvote 0
the issue is with your last argument.
Try:
Rich (BB code):
=countifs(kcps!$h$2:$h$10000,"t1",kcps!$k2:$k10000,"<>")
if you are looking the for specific value "t1", use quotes around that.
If you are looking for the value in cell t1, leave the quotes off. It doesn't matter if t1 is hard-coded or a formula, as long as it is not returning an error in that cell.

thank you joe you are my saviour!!!!!
 
Upvote 0

Forum statistics

Threads
1,223,904
Messages
6,175,295
Members
452,631
Latest member
a_potato

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