Hello,
I am trying to figure out a way to get a count if certain criteria's are met including an AND function. Is this possible? Example: I am trying to get a count if Column B & C both do not equal "0", Column A equals "GC", and Column D equals "Active". Is this possible? I currently tried IF(AND(B:B<>0,C:C<>0),COUNTIFS(A:A,"GC",D:D,"Active"))
Outcome should be "2"
[TABLE="width: 500"]
<tbody>[TR]
[TD]Group[/TD]
[TD]# of A Drawing[/TD]
[TD]# of X Drawing[/TD]
[TD]Status[/TD]
[/TR]
[TR]
[TD]GC[/TD]
[TD]0[/TD]
[TD]0[/TD]
[TD]Active[/TD]
[/TR]
[TR]
[TD]PC[/TD]
[TD]2[/TD]
[TD]1[/TD]
[TD]Complete[/TD]
[/TR]
[TR]
[TD]AV[/TD]
[TD]0[/TD]
[TD]6[/TD]
[TD]Active[/TD]
[/TR]
[TR]
[TD]GC[/TD]
[TD]6[/TD]
[TD]4[/TD]
[TD]Complete[/TD]
[/TR]
[TR]
[TD]SI[/TD]
[TD]4[/TD]
[TD]0[/TD]
[TD]Complete[/TD]
[/TR]
[TR]
[TD]SI[/TD]
[TD]5[/TD]
[TD]8[/TD]
[TD]Active[/TD]
[/TR]
[TR]
[TD]GC[/TD]
[TD]5[/TD]
[TD]0[/TD]
[TD]Active[/TD]
[/TR]
[TR]
[TD]GC[/TD]
[TD]1[/TD]
[TD]1[/TD]
[TD]Active[/TD]
[/TR]
</tbody>[/TABLE]
I am trying to figure out a way to get a count if certain criteria's are met including an AND function. Is this possible? Example: I am trying to get a count if Column B & C both do not equal "0", Column A equals "GC", and Column D equals "Active". Is this possible? I currently tried IF(AND(B:B<>0,C:C<>0),COUNTIFS(A:A,"GC",D:D,"Active"))
Outcome should be "2"
[TABLE="width: 500"]
<tbody>[TR]
[TD]Group[/TD]
[TD]# of A Drawing[/TD]
[TD]# of X Drawing[/TD]
[TD]Status[/TD]
[/TR]
[TR]
[TD]GC[/TD]
[TD]0[/TD]
[TD]0[/TD]
[TD]Active[/TD]
[/TR]
[TR]
[TD]PC[/TD]
[TD]2[/TD]
[TD]1[/TD]
[TD]Complete[/TD]
[/TR]
[TR]
[TD]AV[/TD]
[TD]0[/TD]
[TD]6[/TD]
[TD]Active[/TD]
[/TR]
[TR]
[TD]GC[/TD]
[TD]6[/TD]
[TD]4[/TD]
[TD]Complete[/TD]
[/TR]
[TR]
[TD]SI[/TD]
[TD]4[/TD]
[TD]0[/TD]
[TD]Complete[/TD]
[/TR]
[TR]
[TD]SI[/TD]
[TD]5[/TD]
[TD]8[/TD]
[TD]Active[/TD]
[/TR]
[TR]
[TD]GC[/TD]
[TD]5[/TD]
[TD]0[/TD]
[TD]Active[/TD]
[/TR]
[TR]
[TD]GC[/TD]
[TD]1[/TD]
[TD]1[/TD]
[TD]Active[/TD]
[/TR]
</tbody>[/TABLE]