Hello - Hoping for some help on my formula below.
I am trying to count the number of dates (at a specific location) that are between 30 and 60 days from today.
Here is my current formula:
=COUNTIFS({BTP MASTER 2024 Range 1}, [Location Name]@row, {BTP MASTER 2024 Range 3}, "",{BTPMASTER 2024 Range 4}, <TODAY(+60), {BTP MASTER 2024 Range 4}, >TODAY(+30), {BTP MASTER 2024 Range 5}, 0)
The first part of the formula is referencing a master sheet, and searching for a specific location. Then it is searching for blanks in another range on that sheet (that signifies the item is open). That is all working fine. My issue is on the last half of the formula where I'm trying to see what is open between 30 and 60 days.
The current formula is returning a number but I know that number is incorrect when I manually count the dates.
For reference, I'm also using the below formula to count items open in the last 7 days and it's working correctly.
=COUNTIFS({BTP MASTER 2024 Range 1}, [Location Name]@row, {BTP MASTER 2024 Range 3}, "", {BTP MASTER 2024 Range 4}, >TODAY(-8), {BTP MASTER 2024 Range 4}, <TODAY(+1), {BTP MASTER 2024 Range 5}, 0)
Thanks in advance for any help!
-Nick