I'm working on a project that distributes free car seats and we collect data from family members for up to 4 children per family depending on their car seat needs. One entry may include 1, 2, 3, and/or 4 children and we ask for specific demographic data per child. Again, all collected in entry so across multiple columns for one row.
In this scenario I am trying to calculate how many children were identified as having a certain racial identity within a certain time frame. It works when I write the formula without a time frame like this:
=COUNTIFS([Child Racial Identity 1]:[Child Racial Identity 4], "White")
But once I add a date range it says incorrect argument set and I don't understand why the addition of a date range would create this error message.
=COUNTIFS([Child Racial Identity 1]:[Child Racial Identity 4], "White", [Date Distributed]:[Date Distributed], AND(@cell >= DATE(2023, 10, 1), @cell <= DATE(2024, 9, 30)))
What am I doing wrong?