Forum Discussion
Andrew_lu1933
4 years agoRegular Visitor
How to set var to select column name?
in power query, if I want to operate one column, we will use _[columnName]. but if I want operate many column, I want use List.Transform({columnName1, columaname2},(t)=> operate(Table, [t]). how t...
Vijay_A_Verma
4 years agoMost Valuable Professional
If you can explain what exactly you are trying to do, then experts here can suggest the right solution.
When you are doing List.Transform({columnName1, columaname2},(t)=>, it is t which contains columnName1 & 2 one by one and whatever you are operating on t will be applicable on columnName1 & 2.