I'm trying to come up with a count formula to meet my needs.

I want the formula to count each row in a sheet that meets two requirements.
  1. A cell in a certain column contains a specific text.
  2. A cell in a certain column falls within a specific month, the cell is currently in the mm/dd/yyyy format.

Here is an example of how the table looks:

table.png

I have this formula for counting how many rows fall in a specific month:
=SUMPRODUCT(--(C$2:C$1048576<>""),--(MONTH(C$2:C$1048576)=1))
And I have this formula for counting how many rows contain a specific text (Level)
=COUNTIF(B2:B1048576, "High")
I need to combine them somehow. Not sure if it is possible to combine these two exact methods but I need something that lets me count the rows that are of a specific month and of a specific level.

Thanks for any help everyone.