Forum Discussion

Naren007's avatar
Naren007
Copper Contributor
Mar 01, 2024

Finding the highest selected choice

Greetings, Feedback will be triaged by consensus between 6 people. Each one can select as High(H), or Med (M), or Low (L) priority. I need to find out which priority level is selected the highest?  ...
  • Patrick2788's avatar
    Mar 01, 2024

    Naren007 

    365 solution:

    =LET(
        GetResults, LAMBDA(row, LET(most_votes, MODE.MULT(CODE(row)), CONCAT(CHAR(most_votes)))),
        BYROW(vMatrix, GetResults)
    )

Resources