Hello!
I'm trying to run a count of the number of entries on a sheet, where the "needs analysis assigned date" is greater than 5 days prior to the "date requestor contacted" date for that same row of data.
Example:
Row 1:
Needs analysis assigned date: 11/1/2022
Date Requestor contacted: 11/2/2022
The date difference only being 1 day, this should not be counted.
However, for:
Row 2:
Needs analysis assigned date: 11/1/2022
Date Requestor contacted: 11/7/2022
This should be counted as it's been 6 days.
My formula is below, and it's #UNPARSEABLE. can anyone help?
=COUNTIF([Date Requestor Contacted]:[Date Requestor Contacted], <=[Needs analysis assigned date](-5)@cell)