Hi,
I am having issues with working out how to get a total count on dates
1st to count how many of those tasks were updated under 7 days.
=COUNTIFS({person1}, [Person1]@row, {Date updated}, <=TODAY(7))
2nd to count how many where done between 7 days and under 14 day
=COUNTIFS({Person1}, [Person1]@row, {Date updated}, >=TODAY(8), {Date updated}, <=TODAY(14))
1st count works fine but then when trying to then add a secondary criteria between 8 and 14 days it just reports 0 and then 1st count does not change.