Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
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 to pass columnName var to operator this column?
List.Transform({Column1,Column2},each List.Sum(Table.Column(tbl,_)))
You can try
each (row)=> List.Tranform({row[Column1], row[Column2]}=> operate(Table, [t]))
--Nate
[t] , the t is only as a str, not as a var.
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.