Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hi everyone
I have a list for example:
Now I want to create a query in power query that will create a text like this:
"The letters are: " A B C D
I already have this query:
let
xx= KEYListfunction(),
list = Text.Split(xx, ","),
text = "",
loop = List.Accumulate(list, 0, (state, current) => text = text & " " & current ))
in
loop
But the result only says "FALSE"
Solved! Go to Solution.
hi @Anonymous
You may useText.Combine instead of List.Accumulate Function
https://docs.microsoft.com/en-us/powerquery-m/text-combine
Regards,
Lin
hi @Anonymous
You may useText.Combine instead of List.Accumulate Function
https://docs.microsoft.com/en-us/powerquery-m/text-combine
Regards,
Lin
Great thank you very much!