I'm trying to make a grid that counts how many tickets were open on any given date. In my grid I have a column for the dates I want to put in and then columns for how many tickets were open on that specific date. The formula I'm using to calculate open tickets on that date is:
=COUNTIFS({Ticket List - Created}, <Date@row, {Ticket List - Closed}, >=Date@row)
In my mind this should count all rows in the grid "Ticket List" that have a created date before the date I put in, and a Closed date on or after the date I put in.
The formula ends up giving me 213, but when I go to my source sheet to verify I set up the filters to match the formula I only get 40 results. I've looked through Ticket List and verified that the filter search is accurate. I just filtered Ticket List for Closed greater than the date in my other grid and that strangely resulted in 213. It's almost like it's only counting the second range/criteria and ignoring the first.
Does anyone see what I'm doing wrong?