I'm trying to Count if my specified date ranges falls between certain dates.
So with other words, I'm trying to add "+1" every single time I enter a date in January 2015 in my specified Dates column. I use this simple formula;
=COUNTIF(Records!F3:F456, ">31/12/2014")
It works fine for my January cell but my issue comes when I move on to my February cell. My January cell keeps adding every entered date to itself. So I need something in that formula which tells my January cell only to look for entries made between 31/12/2014 and 31/01/2015. I've tried;
=COUNTIFS(Records!F3:F456, ">31/12/2014 <=31/01/2015") but it only takes the values down to zero.
I hope I explained this clearly enough.
So with other words, I'm trying to add "+1" every single time I enter a date in January 2015 in my specified Dates column. I use this simple formula;
=COUNTIF(Records!F3:F456, ">31/12/2014")
It works fine for my January cell but my issue comes when I move on to my February cell. My January cell keeps adding every entered date to itself. So I need something in that formula which tells my January cell only to look for entries made between 31/12/2014 and 31/01/2015. I've tried;
=COUNTIFS(Records!F3:F456, ">31/12/2014 <=31/01/2015") but it only takes the values down to zero.
I hope I explained this clearly enough.