formula question

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm working on a spreadsheet listing people with hire dates (column B) and
the date the individual took a particular training course (if they did take
the course, a date is entered in column F). I need a formula to count the
number of people with 1) a date greater than or equal to 01/01/06 in column
B, and 2) any entry in column F. The goal is to see the number of people
hired since 01/01/06 who have taken that training course. Thanks!
 
Try this:
any entry in column F

=SUMPRODUCT(--(ISNUMBER(B1:B10)),--(B1:B10>=DATE(2006,1,1)),--(F1:F10<>""))

Note: you can't use entire columns as range references (unless you're using
Excel 2007).
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Counting Cells with Multiple Range Criteria (Excel 2003) 7
Excel Formula Help! 2
Min functions 5
IF or vlookup formula 8
SUMIF 3
counting based on two dates 2
Formula help 2
SUMIF Formula Help 8

Back
Top