SOLVED

Formula Assistance

Copper Contributor

Hello, Microsoft Community!

 

I am in need of formula help once again. I want to COUNT the number of entries in two separate columns (A and C) but only if they meet certain criteria in a third column (B).

 

Q: What is the total number of services provided to those who speak English AND what is the total number of services provided to those who speak Spanish? The sum total of services equals 20. 

 

Example:

 

ABCDEF
Services ALanguageServices BColumn3  
CSEng ---
CSEng ---
MAEng ---
MAEng ---
MAEng ---
MAEng ---
PNEng ---
PNEng ---
PNEng -  
PTEngA-POC
 EngB-AC-
MASp ---
MASp ---
MASp ---
MASp ---
PCSp -  
PCSp -  
PCSp -  
 SpC -

-

      
    Total Services:20
      
    Total Eng: 
    Total Sp: 

 

Thank you for helping me with the project with skills beyond my abilities.

2 Replies
best response confirmed by MMHiggins (Copper Contributor)
Solution

@MMHiggins 

For "Eng":

=COUNTIFS(B2:B20,"Eng",A2:A20,"<>")+COUNTIFS(B2:B20,"Eng",C2:C20,"<>")
Thank you, Detlef Lewin!
1 best response

Accepted Solutions
best response confirmed by MMHiggins (Copper Contributor)
Solution

@MMHiggins 

For "Eng":

=COUNTIFS(B2:B20,"Eng",A2:A20,"<>")+COUNTIFS(B2:B20,"Eng",C2:C20,"<>")

View solution in original post