0

I feel like this should be really easy, but I can't figure out the commands.

I have data in columns C and D which either contains a date or is blank. I have data in column H which contains the name of an employee. I want to calculate the total number of times, for each individual employee, non-blank values occur in C and non-blank values occur in D.

CountIf doesn't quite seem to have the capacity to do this. Any ideas?

1
  • Sounds like you need =COUNTIFS(). Can you show the table? Commented Feb 14, 2014 at 10:06

2 Answers 2

1

In addition to previos answer, if your criteria is for non-blank cells:

=COUNTIFS(H:H,"YourName",C:C,"<>"&"",D:D,"<>"&"")
Sign up to request clarification or add additional context in comments.

Comments

0

If you are using Excel 2007 or later, use

=COUNTIFS(H:H,"YourName",C:C,"",D:D,"")

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.