Forum Discussion
Anonymous
6 years agoNot applicable
Append several SharePoint list sources. How to do it in M?
Hello everyone! I want to merge several SharePoint lists (around 100), with the same column names, but with different names and in different sites. I already tried to bring all tables and the...
- 6 years ago
Yes you can, I wrote a blog article on this once. Basically all you have to do is something like:
let
Source = ...
Source1 = ...
Source2 = ...
Final = Table.Combine({Source, Source1, Source2})
in
Final
Greg_Deckler
Community Champion
6 years agoYes you can, I wrote a blog article on this once. Basically all you have to do is something like:
let
Source = ...
Source1 = ...
Source2 = ...
Final = Table.Combine({Source, Source1, Source2})
in
Final
ElizabethTachji
Helper III
5 years agoHi Greg,
Thank you for code. amazing. How do I get a source sublist name for each row?