I have a list of data with 3 columns:

Col A: Dates
Col B: Prices
Col C: Costs

I want to create a table that counts the number of times that the price is more than a certain value and the cost is less than a certain other value in the same month (regardless of the year and day).

For example:

On 2/20/2004 the price was 100 and the cost was 50
On 2/14/2005 the price was 75 and the cost was 75
On 2/18/2005 the price was 50 and the cost was 40

I want to count the number of times that the price is above 60 AND the cost is below 70, given that the month is February. I need a formula for the above data that will return 2. The formula must lookup the month from Col A to do the search.

Any ideas?