Forum Discussion
NeoGen
Jan 27, 2023Copper Contributor
Identify values and then display the content of the cell.
I am trying to set up a questionnaire that self populates the results. I have the answers given to 9 questions of 7 sections in a table (table is 9x7) Seen below: Each column is then summed, a...
- Jan 27, 2023
If your data including the headings are in cells B1:J8. The totals in row 9 then this function should work. See also the attached example file.
=INDEX(SORTBY(B1:J1,B9:J9,-1),SEQUENCE(3,3))
A little more modern with the new WRAPROWS() function:
=WRAPROWS(SORTBY(B1:J1,B9:J9,-1),3)