formula question

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!
 
T

T. Valko

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


Top