Forum Discussion
Create a table with a join one-to-many from Query editor table
- Anonymous9 years ago
HI gpiero,
If you share some detailed information about these table structures it will be help for analysis.
For your scenario, I think you can use power query to get the specify table and use 'Table.Join' function to merge these tables.
Formula: get specify cell value.
Table1= #"Previous Steps Name"[ColumnName]{RowIndex-1}Sample:
Table1= #"Changed Type"[Utenti]{0}Full query:
let Source = xxxxxxxx, #"Changed Type" = xxxxxxx, Table1= #"Changed Type"[Utenti]{0}, Table2= #"Changed Type"[Utenti]{1}, MergeTable=Table.Join(Table1,"User",Table2,"User") in MergeTableReference link:
Regards,
Xiaoxin Sheng
If you expand the column "Utenti" with the arrows: Isn't that what you need?
- gpiero9 years ago
Skilled Sharer
Really yes. but I did not explained well my goal to get two separate table.
In any case reading you answer I realized I could copy the query keeping only the column with the ID from main document library
and after expanding the column.
During my previous test I used a wrong option of Unpivot table.....
Now I have got what I was looking for
Thanks again for your post