I need to have a cell counted between two date ranges. The first set of dates, denotes project start, the other is project end.
So, if my project end has not exceeded today, it means it is still active
=COUNTIFS([Const Start]6:[Const Start]39, "<=" TODAY(), [Const End]6:[Const End]39 ">=" TODAY())
Thanks in advance for the help!