I'm trying to figure out a formula to count how many projects occur within a specific date range as well as have one of three different payment status'.
Here's my working date range formula. I'm trying to AND the date range with the three OR'd payment status'.
=COUNTIF({EISD}, AND(@cell >= DATE(2021, 5, 1), @cell <= DATE(2021, 5, 31)))
My new formula is looking like this so far. I haven't been able to locate a manual or training materials or live person for our Enterprise service so you guys are my last shot. The coding is still bizarre to me. I'm sure it's like this to avoid lawsuits.
=COUNTIFS(AND(Payment Status:Payment Status, OR(@cell = "Initial Payment", @cell = "Fully Paid", @cell = "100% In-Service")),EISD:EISD, AND(@cell >= DATE(2021, 5, 1), @cell <= DATE(2021, 5, 31)))
Here's a description of how it needs to behave:
Output: Count of projects that (fall within a specific date range) AND (have a payment status of "Initial Payment" OR "Fully Paid" OR "100% In-Service")
The EISD column is a Date formatted column. The Payment Status column is a Dropdown (Single Select). Both are on the same sheet.