I'm trying to count how many projects are in the construction phase each month using this formula:
=COUNTIFS({Master Project List Range 1}, "2 - Construction", {Master Project List Range 2}, <=Month@row, {Master Project List Range 3}, >=Month@row)
It works, but I want to make sure it's also counting projects that are starting after the first of the month. For example, it counts 24 project in the construction phase for May, but when I print out master gantt and count the projects manually, I'm getting 30 because there are 6 projects starting in the middle of May. How do I adjust the formula to account for all projects already in the construction phase and those entering the construction phase in any given month?