How to count the values in Column S if Column E equals a certain month

abelletel

New Member
Joined
Feb 6, 2014
Messages
5
Hello,

Column S contains different strings of text. Column E contains the date that the information in Column S was decided. I would like to be able to calculate the following two things:


  1. Count the number of times the phrase "not eligible" appears in Column S IF the date in Column E is in the month of February. I would also need to be able to edit this formula so that it calculates the same information for March, April etc.

    I would also like a variation of this formula with a third column of data added in.
  2. Count the number of times the phrase "not eligible" appears in Column S IF the date in Column E is in the month of February AND COLUMN I contains the text "Exception".

Thanks for all the help!:LOL:
 

Excel Facts

Formula for Yesterday
Name Manager, New Name. Yesterday =TODAY()-1. OK. Then, use =YESTERDAY in any cell. Tomorrow could be =TODAY()+1.
1.
Code:
=COUNTIFS(S:S,"="&"not eligible",E:E,">="&"2/1/2014",E:E,"<="&"2/28/2014")
2.
Code:
=COUNTIFS(S:S,"="&"not eligible",E:E,">="&"2/1/2014",E:E,"<="&"2/28/2014",I:I,"="&"exception")
 
Upvote 0

Forum statistics

Threads
1,215,019
Messages
6,122,707
Members
449,093
Latest member
Mnur

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top