COUNTIF AND Issues - Counting across columns

DSL1970

New Member
Joined
Jun 28, 2012
Messages
16
All,

I am having issues with a table that will have other data added daily. I have three columns where I have Chain of Command 1, Chain of Command 2 and FT/PT.

Based on a pre-selected leader, I can get the count of how many times that leader chows up in the list using COUNTIF; however, I am having a problem in getting the number of Full-Time (FT) employee count based on this pre-selected leader. The number can only be equal to or less than the count number.Any assistance to get the number of FT workers by leader would be appreciated.

Which Leader?Count
LEADER 1=COUNTIF(A5:B24,A2)=COUNTIF(AND((A5:B24,A2), C5:C24="FT"),COUNTIF( C5:C24="FT"),"")
CHAIN OF COMMAND 1CHAIN OF COMMAND 2PT/FT
LEADER 1LEADER 19FT
LEADER 1LEADER 20FT
LEADER 1LEADER 21PT
LEADER 2LEADER 22FT
LEADER 3LEADER 23FT
LEADER 4LEADER 24FT
LEADER 5LEADER 25FT
LEADER 6LEADER 26FT
LEADER 7LEADER 27FT
LEADER 8LEADER 28FT
LEADER 9LEADER 29FT
LEADER 10LEADER 30FT
LEADER 11LEADER 31FT
LEADER 12LEADER 32FT
LEADER 13LEADER 33FT
LEADER 14LEADER 34FT
LEADER 15LEADER 35FT
LEADER 16LEADER 36FT
LEADER 17LEADER 37FT
LEADER 18LEADER 38FT

<tbody>
</tbody>
 

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.
Hello DSL1970,

I think this will solve your problem :

Uses COUNTIFS instead of COUNTIF

=COUNTIFS(A5:A24,A2;C5:C24,"FT")+COUNTIFS(B5:B24,A2;C5:C24,"FT")

Have a nice day!
Den
 
Upvote 0
Sorry jtakw, but the solution you pointed out from Momentman is not working, because if you have your leader in column "CHAIN OF COMMAND 2" it will not count it
For example : "LEADER 1" in cell "B12" will still write 2 instead of 3
 
Upvote 0
Sorry jtakw, but the solution you pointed out from Momentman is not working, because if you have your leader in column "CHAIN OF COMMAND 2" it will not count it
For example : "LEADER 1" in cell "B12" will still write 2 instead of 3

I'm not pointing out a Solution, I'm pointing out a Double Post, so people could refer to it and vice versa, so nobody wastes their time incase it's solved.
In this case, maybe people reading the Other post don't know about your suggested solution here, and they're spending time coming up with something there.

We should always point out Double Posts for this reason.

Edit: and MODs usually lock and/or delete double/re-posts.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,216,727
Messages
6,132,353
Members
449,720
Latest member
NJOO7

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