Forum Discussion
Pit927
3 years agoRegular Visitor
How can I use a parameter to select a column?
Hi! How can I use an input parameter in the function to select a column? Same as using ["NAME COLUMN"], then use a parameter: [parameter] For example, in this case of combining columns: Whe...
Pit927
3 years agoRegular Visitor
Hi lbendlin
If I remove the square brackets the result is:
| ID | FIELD | ID - FIELD |
| 1 | Black | 1 - FIELD |
| 2 | Yellow | 2 - FIELD |
| 3 | Orange | 3 - FIELD |
| 4 | Blue | 4 - FIELD |
| 5 | Green | 5 - FIELD |
I need this result:
| ID | FIELD | ID - FIELD |
| 1 | Black | 1 - Black |
| 2 | Yellow | 2 - Yellow |
| 3 | Orange | 3 - Orange |
| 4 | Blue | 4 - Blue |
| 5 | Green | 5 - Green |
I need select the column with the name of the parameter.