Trying to create Dynamic Array solution but its not working.
Column F is regular solution
Column G is DA solution.
Column F is regular solution
Column G is DA solution.
and-or-xor-not.xlsx | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
A | B | C | D | E | F | G | H | I | J | K | L | |||
1 | Name | Exam 1 | Exam 2 | Exam 3 | Coursework | Result | DA Result | Pass Ctriteria | ||||||
2 | Emily | 57 | 80 | 64 | 75% | Fail | Pass | Average 1-3 is => | 75.00 | |||||
3 | Andreas | 91 | 60 | 69 | 81% | Pass | Pass | Coursework is => | 80% | |||||
4 | Jan | 88 | 74 | 83 | 85% | Pass | Pass | |||||||
5 | Rachel | 88 | 95 | 89 | 76% | Pass | Pass | |||||||
6 | Alexandra | 89 | 71 | 74 | 92% | Pass | Pass | |||||||
7 | Jason | 72 | 89 | 82 | 68% | Pass | Pass | |||||||
8 | Claire | 55 | 74 | 93 | 90% | Pass | Pass | |||||||
9 | Tony | 95 | 75 | 81 | 86% | Pass | Pass | |||||||
AND 2 |
Cell Formulas | ||
---|---|---|
Range | Formula | |
F2:F9 | F2 | =IF(OR(AVERAGE(B2:D2)>=$L$2,E2>=$L$3),"Pass","Fail") |
G2:G9 | G2 | =IF(OR(BYROW($B$2:$D$9,LAMBDA(array,AVERAGE(array)))>=$L$2,BYROW($E$2:$E$9,LAMBDA(array,array>=$L$3))),"Pass","Fail") |