Hello,
I have a data set with over 100 columns. In the data set I have a column called "COLUMN_NAME" that contains the name of one of the other columns. What I need to do is pull the value from the column that is specified in "COLUMN_NAME". Any ideas?
Thanks in advance
Here is an example of what I am trying to do:
| COLUMN_NAME | VAR_1 | VAR_2 | VAR_3 | Target Output |
| VAR_1 | 10 | 8 | 6 | 10 |
| VAR_3 | 1 | 2 | 3 | 3 |
| VAR_2 | 5 | 7 | 9 | 7 |