Naren007
Mar 01, 2024Copper Contributor
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? ...
- Mar 01, 2024
365 solution:
=LET( GetResults, LAMBDA(row, LET(most_votes, MODE.MULT(CODE(row)), CONCAT(CHAR(most_votes)))), BYROW(vMatrix, GetResults) )