Home > OS >  Is there a function to count (only the) rows where the values in column `A` are greater than corresp
Is there a function to count (only the) rows where the values in column `A` are greater than corresp

Time:03-17

Scores in a enter image description here

=ArrayFormula(TRANSPOSE(MMULT(TRANSPOSE({A2:A5>B2:B5, A2:A5>C2:C5, B2:B5>C2:C5, C2:C5>B2:B5}*1), SEQUENCE(4, 1, 1, 0))))

enter image description here

=ArrayFormula((1/SUM(
 TRANSPOSE(MMULT(TRANSPOSE({A2:A5>B2:B5, A2:A5>C2:C5, B2:B5>C2:C5, C2:C5>B2:B5}*1), SEQUENCE(4, 1, 1, 0)))))*
 TRANSPOSE(MMULT(TRANSPOSE({A2:A5>B2:B5, A2:A5>C2:C5, B2:B5>C2:C5, C2:C5>B2:B5}*1), SEQUENCE(4, 1, 1, 0))))

enter image description here

CodePudding user response:

The Excel Spreadsheet enter image description here

  • Related