Hello
I'm new to alteryx and I'm hoping there's a simple answer to this
I want to find the minimum value across a row, for example
| | Col 1 | Col 2 | Col 3 | Col 4 | Col 5 | Col 6 | Col 7 | Col 8 | Col 9 | Col 10 | Minimum Value |
| A | 1 | | | 3 | | 4 | | | 4 | | 1 |
| B | | | 22 | | | | | | | | 22 |
| C | | | | | | 3 | | 2 | | | 2 |
| D | | | | 22 | | | | | 3 | | 3 |
| E | | | | | | | | 2 | | | 2 |
| F | | | | 3 | | | 3 | | | | 3 |
| G | | | | | | 2 | | | 2 | | 2 |
| H | | | | 3 | | | | | | 33 | 3 |
And I want to create that last minimum value column in alteryx.
One way I could do this is with a formula MIN(Col 1 + Col 2 etc..), however I have too many columns to individually type out. Is there another way I can do this? Or more broadly, how can I write a formula that say "from Col X to Col Y". The excel version would be MIN(Col 1:Col 10)
Thank you!