Forum Discussion
siva_powerbi
Helper IV
5 years agoError at first value while using list.generate in power query
I am trying to extract the value from list and append data for each value in list in a loop. Using list.Generator to achieve this task, problem I am facing here is for first value in list always ...
- 5 years ago
Hi, siva_powerbi , I think the glitch lies in here
() => [i=0,x= Table.FromList(#"Col Names",Splitter.SplitByNothing)]try changing it to
() => [i=0,x= Table.FromList(#"Col Names",Splitter.SplitByNothing())]
CNENFRNL
Community Champion
5 years agoHi, siva_powerbi , I think the glitch lies in here
() => [i=0,x= Table.FromList(#"Col Names",Splitter.SplitByNothing)]try changing it to
() => [i=0,x= Table.FromList(#"Col Names",Splitter.SplitByNothing())]- siva_powerbi5 years ago
Helper IV
Thanks for the reply.
Error gone but new issue, First I am seeing a TABLE retuned with full set of values in the list.
Can you please help why this change?