Home > Enterprise >  How to select the cell with the highest value based on 2 cells
How to select the cell with the highest value based on 2 cells

Time:04-30

I'm trying to make a score sheet for a video tournament, and I can not get figure this out. For example column A is users names Column b is score Column C is bonus point

And the formula I need is if user 1 and user 2 have the same scored pick the one that has more bonus.

CodePudding user response:

try:

=SORTN(A2:A, 1, 0, B2:B, 0, C2:C, 0)

enter image description here

  • Related