I have two simple counting formulas that aren't working for me.
I have searched other questions/answers and tried their solutions, but it still doesn't work for me and I don't understand why.
Here's a snippet of my data:
The first thing I'm trying to do is count how many dates (not counting days) are listed in "Year Certified" IF "Year Ended" is blank. Here is the formula I am trying:
=COUNTIFS([Year Certified]:[Year Certified], <=TODAY, [Year Ended]:[Year Ended], ISBLANK)
This doesn't have to be specified as a date less than today, as all dates entered will be less than today, by value of the data. So the <=TODAY is not necessary in the formula.
The second thing I'm trying to do is count how many dates (not days) are listed in "Monitored till" that are greater than todays date. (The cells in this column are populated by a formula so all have a date, though those dates prior today are invisible). The formula I have is: =COUNTIFS([Monitored till]:[Monitored till], @cell >= TODAY())
Appreciate any help. Thanks.