[TABLE="width: 500"]
<tbody>[TR]
[TD]Duration hours:mins
Column A
[/TD]
[TD]Type of interruption
Column B
[/TD]
[TD]Number of cust affected
Column C
[/TD]
[TD]Event day? Y/N
Column D
[/TD]
[/TR]
[TR]
[TD]13:39
[/TD]
[TD]Unplanned
[/TD]
[TD]13
[/TD]
[TD]N[/TD]
[/TR]
[TR]
[TD]43.27
[/TD]
[TD]Unplanned [/TD]
[TD]20
[/TD]
[TD]N[/TD]
[/TR]
[TR]
[TD]6:00
[/TD]
[TD]Planned
[/TD]
[TD]80
[/TD]
[TD]N
[/TD]
[/TR]
</tbody>[/TABLE]
Hi,
The above table shows a sample of what I am doing.
I'm trying to count the number of instances that meets the following criteria:
Number of instances where Unplanned interruption occrured during none event day that are: (the formula on right is what I currently have on the table but is not working. It only displays "0". I just want to note that the time column (Column A) is formatted as [h]:mm;@
[TABLE="width: 500"]
<tbody>[TR]
[TD]
[/TD]
[TD]=COUNTIFS($A$4:$A$47,"<8:00",$B$4:$B$47,"Unplanned",$D$4:$D$47,"NO")
[/TD]
[/TR]
[TR]
[TD]
[/TD]
[TD]COUNTIFS($A$4:$A$47,">8:00",$A$4:$A$47,"<12:00",$B$4:$B$47,"Unplanned",$D$4:$D$47,"NO")<strike></strike>
[/TD]
[/TR]
[TR]
[TD]
[/TD]
[TD]
[/TR]
[TR]
[TD]
[/TD]
[TD]
[/TD]
[/TR]
[TR]
[TD]
[/TD]
[TD]
[/TD]
[/TR]
</tbody>[/TABLE]
Thank you.
Jao
<tbody>[TR]
[TD]Duration hours:mins
Column A
[/TD]
[TD]Type of interruption
Column B
[/TD]
[TD]Number of cust affected
Column C
[/TD]
[TD]Event day? Y/N
Column D
[/TD]
[/TR]
[TR]
[TD]13:39
[/TD]
[TD]Unplanned
[/TD]
[TD]13
[/TD]
[TD]N[/TD]
[/TR]
[TR]
[TD]43.27
[/TD]
[TD]Unplanned [/TD]
[TD]20
[/TD]
[TD]N[/TD]
[/TR]
[TR]
[TD]6:00
[/TD]
[TD]Planned
[/TD]
[TD]80
[/TD]
[TD]N
[/TD]
[/TR]
</tbody>[/TABLE]
Hi,
The above table shows a sample of what I am doing.
I'm trying to count the number of instances that meets the following criteria:
Number of instances where Unplanned interruption occrured during none event day that are: (the formula on right is what I currently have on the table but is not working. It only displays "0". I just want to note that the time column (Column A) is formatted as [h]:mm;@
[TABLE="width: 500"]
<tbody>[TR]
[TD]
<8 hours
<strike></strike>[/TD]
[TD]=COUNTIFS($A$4:$A$47,"<8:00",$B$4:$B$47,"Unplanned",$D$4:$D$47,"NO")
[/TD]
[/TR]
[TR]
[TD]
>8 hours and <12 hours
<strike></strike>[/TD]
[TD]COUNTIFS($A$4:$A$47,">8:00",$A$4:$A$47,"<12:00",$B$4:$B$47,"Unplanned",$D$4:$D$47,"NO")<strike></strike>
[/TD]
[/TR]
[TR]
[TD]
=12 hours
<strike></strike>[/TD]
[TD]
=COUNTIFS($A$4:$A$47,"=12:00",$B$4:$B$47,"Unplanned",$D$4:$D$47,"NO")
[/TD][/TR]
[TR]
[TD]
>12 hours and <=24 hours
<strike></strike>[/TD]
[TD]
COUNTIFS($A$4:$A$47,">12:00",$A$4:$A$47,"<24:00",$B$4:$B$47,"Unplanned",$D$4:$D$47,"NO")
<strike style="background-color: transparent; border-collapse: collapse; color: rgb(34, 34, 34); font-family: Verdana,Arial,Tahoma,Calibri,Geneva,sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: line-through; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; width: auto; word-spacing: 0px;"></strike>[/TD]
[/TR]
[TR]
[TD]
36 to 48 hours
<strike></strike>[/TD]
[TD]
COUNTIFS($A$4:$A$47,">36:00",$A$4:$A$47,"=48:00",$B$4:$B$47,"Unplanned",$D$4:$D$47,"NO")
<strike style="background-color: transparent; border-collapse: collapse; color: rgb(34, 34, 34); font-family: Verdana,Arial,Tahoma,Calibri,Geneva,sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: line-through; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; width: auto; word-spacing: 0px;"></strike>[/TD]
[/TR]
</tbody>[/TABLE]
Thank you.
Jao