Hi Alteryx Community.
I need some help with this problem.
I have the below input.
| Ratio 1 | Ratio 2 | Fruit 1 | Fruit 2 |
| 2 | 1 | Orange | Apple |
| 1.5 | 3 | Banana | Pineapple |
And I want the below output.
| MAX RATIO | Fruit |
| 2 | Orange |
| 3 | Pineapple |
Basically I want to take the Fruit to be based on which Ratio is larger.
If ratio 1 is larger I want the Fruit from Fruit 1.
If ratio 2 is larger I want the Fruit from Fruit 2.
Thank you