Countif wildcards & 2 criteria

J

Jeannie

Hi,
I've been trying for 2 days to make this formula work. I have a spreadsheet
that shows the employees that have been hired and the ones that have left the
company. I need to count how many have arrived for each month.
Column E has the date and Column F has the status (True for arrivals and
False for departures).
I need to have a formula that would combine:
=COUNTIF(E3:E276, "TRUE")
and
=COUNTIF(E3:E276, "2007-01-*") (I'm not sure about the use of the wildcard
in a formula)
Any help would be greatly appreciated
Thanks
Jeanne
 
W

WLMPilot

Try putting an equal sign in the formula just before TRUE;

=COUNTIF(E3:E276, "=TRUE")

Les
 
J

JP

Try

=SUMPRODUCT((A1:A100=DATE(2008,1,9))*(B1:B100=TRUE))

Adjust the date formula as needed.

HTH,
JP
 
D

Dave Peterson

J

Jeannie

I tried all of these commands and yes, finally, the last one was the right
one. I finally have the sum I want
Thanks to all of you and a particular thank you to Dave
Jeanne
 

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

Top