I'm trying to count the number of submissions of a specific activity in a specific time period.
For example, I want to count the number of submissions for Task A in (Task A/B column) that were submitted in the period >=3/6/23 to <3/14/23 in (Submission Date Column).
I have filtered the file manually and the correct number is 4. The formula keeps coming back with 26.
=COUNTIFS({Submission Date}:{Submission Date}, <=DATE(2023, 3, 6), {Submission Date}:{Submission Date}, <DATE(2023, 3, 13), {Task A/B column}, "New")
Is there an order of operations in countifs that I haven't considered?