SOLVED

COUNTIFS help

Copper Contributor

I need to be able to count number of people who fit two criteria. One is a specific term and the other has a date entered if completed. How do I write that formula?

 

I tried =COUNTIFS('Status Update'!M8:M999,">07/01/2019", 'Status Update'!L:'Status Update'!L8:L999, "Yes") 

With the M column having dates entered and the L column having Yes or No entered. I want to have the number of people who were spoken to (so the date was entered) and those who said Yes.

 

HELP

5 Replies
best response confirmed by afy54 (Copper Contributor)
Solution

@afy54 

I see a small typo - can you try the formula like this?:

 

=COUNTIFS('Status Update'!M8:M999,">07/01/2019",'Status Update'!L8:L999, "Yes")

@afy54 

Try it like this...

=COUNTIFS('Status Update'!M8:M999,">07/01/2019", 'Status Update'!L8:L999, "Yes")

@Procrastophile 

Sorry, I didn't refresh the page before posting.

Thank you!!! That worked!
Thank you!! That was the solution!
1 best response

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

@afy54 

I see a small typo - can you try the formula like this?:

 

=COUNTIFS('Status Update'!M8:M999,">07/01/2019",'Status Update'!L8:L999, "Yes")

View solution in original post