I'm struggling to write an excel formula using CountIfs that meet a certain criteria:
Criteria:
- Filter by the week #
- The line state must be "Down"
- The duration must exceed 15 minutes
- Must not count an incident twice if it happened in the same day
This is the formula I have so far:
=COUNTIFS('Raw Data'!A3:$A$1000000,'Tracker'!$B42,'Raw Data'!C3:C1000000, "Down", 'Raw Data'!E3:E1000000, ">=0.010417")
where 'Tracker'!B42 is the Week# I am searching for, and 0.010417 is the time conversion to 15 minutes.
This formula does work, but is counting events that happen in the same day twice. I am unsure how to filter for this.
Here is a reference table from my spreadsheet to help explain further:

For example, I want this formula to only count "Filler Capper" Reason on the 10/6 as one event instead of two. Any suggestions on how to do this?
