Hi Excel Gurus,
I have posted question here before, regarding this project, I did receive a lot of help. I'm about to wrap it up but just can't figure how to do this part. I needed to tweak these Spillable nested Filter Function (In Yellow) to include another criterion, which I can explain by the below:
IF Column [Type] = "Clients B" & If [Firm] = "Acme Corporation", include these in the filter.
I would like to add this argument to cells C3:G3 formulas. Please see XL2BB sheet attached.
Also, my IF(AND) Function is not working in Column [Criteria2] (a simple function - This is driving me crazy, can't figure why it's not working).
Can someone please help me with these?
Imran
I have posted question here before, regarding this project, I did receive a lot of help. I'm about to wrap it up but just can't figure how to do this part. I needed to tweak these Spillable nested Filter Function (In Yellow) to include another criterion, which I can explain by the below:
IF Column [Type] = "Clients B" & If [Firm] = "Acme Corporation", include these in the filter.
I would like to add this argument to cells C3:G3 formulas. Please see XL2BB sheet attached.
Also, my IF(AND) Function is not working in Column [Criteria2] (a simple function - This is driving me crazy, can't figure why it's not working).
Can someone please help me with these?
Clients Analysis 11.22.2022.xlsx | |||||||||
---|---|---|---|---|---|---|---|---|---|
A | B | C | D | E | F | G | |||
1 | Position | Seq# | Companies | Count | Low | High | Average | ||
2 | Partners | ||||||||
3 | 1) | Acme Corporation | 15 | $14,625 | $49,500 | $32,895 | |||
4 | 2) | Cupcake LLC | 5 | $13,050 | $51,750 | $32,400 | |||
5 | 3) | Éclair Inc | 7 | $22,500 | $43,875 | $32,786 | |||
6 | 4) | Grant & Eisenhoffer P.A. | 4 | $20,250 | $45,000 | $36,000 | |||
7 | 5) | Globex Corporation | 4 | $10,125 | $12,375 | $11,419 | |||
8 | 6) | Home Furnishing | 7 | $10,800 | $56,250 | $40,082 | |||
9 | 7) | Hooli | 13 | $16,875 | $46,125 | $26,671 | |||
10 | 8) | Initech | 15 | $12,375 | $54,000 | $33,435 | |||
Summary B |
Cell Formulas | ||
---|---|---|
Range | Formula | |
B3:B10 | B3 | =SEQUENCE(COUNTA(C3#)) |
C3:C10 | C3 | =UNIQUE(FILTER(Plaintiff_AllData[Firm],(Plaintiff_AllData[Position]="Partner")*((Plaintiff_AllData[Type]="Clients")+(Plaintiff_AllData[Type]="Clients A")))) |
D3:D10 | D3 | =BYROW(C3#,LAMBDA(Co,COUNT(FILTER(Plaintiff_AllData[Rate],(Plaintiff_AllData[Firm]=Co)*(Plaintiff_AllData[Position]="Partner")*(ISNUMBER(MATCH(Plaintiff_AllData[Type],{"Clients","Clients A"},0))))))) |
E3:E10 | E3 | =BYROW(C3#,LAMBDA(Co,AGGREGATE(15,6,Plaintiff_AllData[Rate]/((Plaintiff_AllData[Firm]=Co)*(Plaintiff_AllData[Position]="Partner")*(ISNUMBER(MATCH(Plaintiff_AllData[Type],{"Clients","Clients A"},0)))),1))) |
F3:F10 | F3 | =BYROW(C3#,LAMBDA(Co,AGGREGATE(14,6,Plaintiff_AllData[Rate]/((Plaintiff_AllData[Firm]=Co)*(Plaintiff_AllData[Position]="Partner")*(ISNUMBER(MATCH(Plaintiff_AllData[Type],{"Clients","Clients A"},0)))),1))) |
G3:G10 | G3 | =BYROW(C3#,LAMBDA(Co,AVERAGE(FILTER(Plaintiff_AllData[Rate],(Plaintiff_AllData[Firm]=Co)*(Plaintiff_AllData[Position]="Partner")*(ISNUMBER(MATCH(Plaintiff_AllData[Type],{"Clients","Clients A"},0))),NA())))) |
Dynamic array formulas. |
Cells with Conditional Formatting | ||||
---|---|---|---|---|
Cell | Condition | Cell Format | Stop If True | |
C4:C12 | Cell Value | duplicates | text | NO |
Cell Formulas | ||
---|---|---|
Range | Formula | |
H2:H132 | H2 | =IF(AND([@Firm]="Home Furnishing",[Type]="Clients B"),"Include","") |
Imran
Last edited: