0

enter image description here

I want to find the largest number in the "PAID" column in a row and return an indicator based on which cell it comes from to find who has the highest number of paid records. I also want it to list both indicators if there is a tie. How could I go about this?

JvdV
  • 70,606
  • 8
  • 39
  • 70
cheese10234
  • 111
  • 8

1 Answers1

1

Here is one option you could adapt to fit your specific needs:

enter image description here

Formula in A9:

=LET(y,TAKE(WRAPROWS(A1:T1,4),,1),TEXTAFTER("|"&TEXTBEFORE(BYROW(A2:T6,LAMBDA(r,LET(x,INDEX(WRAPROWS(r,4),0,3),TEXTJOIN("|",,FILTER(y,x=MAX(x)))&REPT("|",ROWS(y))))),"|",SEQUENCE(,ROWS(y))),"|",-1))
JvdV
  • 70,606
  • 8
  • 39
  • 70
  • @ jvdV after this, i simply concatenated the cells into one so i could have it all in one cell. thank you kindly. one more question! is there any way to have something come up if they are all 0's across the row? so it isnt just putting the leftmost column? – cheese10234 Jun 14 '23 at 02:32