I have the following columns:
Date (I refer to this as 'Date Opened' below)
Resolved (checkbox)
Resolved Date
Formulas in the 'Sheet Summary' section
I am trying to create these formulas to reflect on the last 7 days, will be used to make a dashboard chart widget:
- Resolved on time (2 Days) over the last 7 days
- Count the number of times the Resolved checkbox is checked and has a Resolved Date within 2 Days of the 'Date Opened' field. Count all occurrences over the last 7 days.
- This is my attempt at the formula, but it just returns to 0 when it should meet criteria.
- =COUNTIFS(Resolved:Resolved, 1, [Resolved Date]:[Resolved Date], @cell <= TODAY(), [Resolved Date]:[Resolved Date], @cell >= TODAY(-2), Date:Date, @cell <= TODAY(), Date:Date, @cell >= TODAY(-7))
- In Progress
- Count the number of times the Resolved checkbox is unchecked and Today's date is within 2 Days of the 'Date Opened' field.
- Not Resolved on time (2 Days) over the last 7 days
- Count the number of times the Resolved checkbox is checked or not checked and has a Resolved Date past 2 Days of the 'Date Opened' field. Count all occurrences over the last 7 days.
How would this be achieved if I am only interested in workdays (M-F)?
For these formulas, I will be able to see if the service level agreement has been met for the year:
- Resolved on time (2 Days) over the last 7 days, Running Total.
- Count the number of times the Resolved checkbox is checked and has a Resolved Date within 2 Days of the 'Date Opened' field. Count all occurrences.
- Not Resolved on time (2 Days) over the last 7 days, Running Total.
- Count the number of times the Resolved checkbox is checked or not checked and has a Resolved Date past 2 Days of the 'Date Opened' field. Count all occurrences.