Excel Excel 2007 Formula Help Needed

Joined
Aug 13, 2012
Messages
1
Reaction score
0
I have one formula that is looking in a column range (Z:Z) and counting a specific date period (1/29/2012 thru 2/1/2013).

=COUNTIF($Z$3:$Z$1063,">=1/29/2012")-COUNTIF($Z$3:$Z$1063,">=2/1/2013")

I have another forumula that is looking in a different column (AR:AR) and counting the number of cells that contain a number less than or equal to 0.

=COUNTIF(AR:AR,"<=0")

I now need a formula that will say....within that first range of dates (1/29/2012 thru 2/1/2013)...how many of those dates contain a number less than or equal to 0 in column AR.

How would I go about doing this?:blush:
 
Joined
Mar 20, 2012
Messages
764
Reaction score
4
In Excel 2007, you can use the COUNTIFS formula. I think this would work for you:

=COUNTIFS($Z$3:$Z$1063,">=1/29/2012",$Z$3:$Z$1063,"<=2/1/2013",$AR$3:$AR$1063,"<=0")

You have to adjust the ranges so they are the same, but I think that will do it. Also, you can use the first 4 arguments of that to replace your subtraction for counting cells in that date range if you wanted to simplify that.
 

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

I NEED HELP 1
Excel Need Countifs Formula Help 0
Help with time function 4
Excel Excel Sumproduct? 0
Formula to fill cells based on Date of Arrival and Date of Departure 1
Excel Stuck trying to use Excel 2007 Countifs. 1
Sumproduct? 3
Sumproduct Help! 2

Top