Hi Community,
I am trying to achieve the following in my workflow: For every name, identify the winner and runner up, and how many pounds are associated with winner and runner up, and output the winner and runner up, as well as associated values. winner criteria needs to be flexible, but for now it is If #1 >= 2x #2 = No decision, ELSE decision. Below is an example.
Thanks very much in advance
Input:
| | A1 | B2 | C3 | D4 |
| John | 10 | 1 | 6 | 20 |
| Mary | 20 | | 21 | |
| Sam | 14 | 2 | 40 | 3 |
Output:
| | Winner | Runner Up | Value for winner | Value for runner up |
| John | D4 | A1 | 20 | 10 |
| Mary | Decision Required | | | |
| Sam | C3 | A1 | 40 | 14 |