Hi,
I'm a beginner and I've some doubts.
I've a data set like the following one
in which A to G are values.
What I want to get is the following result: find the largest value and then get the name of the column (A, B,C,etc). Something like:
| | A | B | C | D | E | F | G | RESULT |
| ID1 | 3 | 1 | 10 | 0 | 0 | 1 | 2 | C |
| ID2 | 1 | 2 | 3 | 30 | 8 | 3 | 2 | D |
| ID3 | 90 | 2 | 20 | 4 | 6 | 3 | 1 | A |
Is that possible?
Thanks in advance