I am creating a summary, where I want to count a number of occurences (e.g., Pass, Fail, etc.) according to multiple combinations of criteria in other columns. My problem is with getting the multiple combinations. My formula is getting monstrous and by my logic this might go a lot longer.
Here's what it currently looks like...
=IF(AND($AE$13="All",$AE$14="All",$AE$15="All",$AE$16="All",$AE$17="All"),COUNTIF(BU!$V$6:$V$14,'Summary - Results'!C$11),
IF($AE$13="All",COUNTIFS(BU!$V$6:$V$14,'Summary - Results'!C$11,BU!$H$6:$H$14,'Summary - Results'!$AE$14,BU!$I$6:$I$14,'Summary - Results'!$AE$15,BU!$F$6:$F$14,'Summary - Results'!$AE$16,BU!$G$6:$G$14,'Summary - Results'!$AE$17),
COUNTIFS(BU!$V$6:$V$14,'Summary - Results'!C$11,BU!$H$6:$H$14,'Summary - Results'!$AE$14,BU!$B$6:$B$14,'Summary - Results'!$AE$13,BU!$I$6:$I$14,'Summary - Results'!$AE$15,BU!$F$6:$F$14,'Summary - Results'!$AE$16,BU!$G$6:$G$14,'Summary - Results'!$AE$17)))
These are the criteria I have.
<tbody>
</tbody>
My formula gets me to the point I can change the Financial Area to whatever I want from my source data, BUT the other criteria must be defined (i.e., cannot be All). In essence, I want the results with all, without any AND with a combination of criteria/filters.
Any help?
Here's what it currently looks like...
=IF(AND($AE$13="All",$AE$14="All",$AE$15="All",$AE$16="All",$AE$17="All"),COUNTIF(BU!$V$6:$V$14,'Summary - Results'!C$11),
IF($AE$13="All",COUNTIFS(BU!$V$6:$V$14,'Summary - Results'!C$11,BU!$H$6:$H$14,'Summary - Results'!$AE$14,BU!$I$6:$I$14,'Summary - Results'!$AE$15,BU!$F$6:$F$14,'Summary - Results'!$AE$16,BU!$G$6:$G$14,'Summary - Results'!$AE$17),
COUNTIFS(BU!$V$6:$V$14,'Summary - Results'!C$11,BU!$H$6:$H$14,'Summary - Results'!$AE$14,BU!$B$6:$B$14,'Summary - Results'!$AE$13,BU!$I$6:$I$14,'Summary - Results'!$AE$15,BU!$F$6:$F$14,'Summary - Results'!$AE$16,BU!$G$6:$G$14,'Summary - Results'!$AE$17)))
These are the criteria I have.
Financial Area | All |
Key only? | Y |
Risk level | M |
Type | D |
Class | ITDM |
<tbody>
</tbody>
My formula gets me to the point I can change the Financial Area to whatever I want from my source data, BUT the other criteria must be defined (i.e., cannot be All). In essence, I want the results with all, without any AND with a combination of criteria/filters.
Any help?