Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
I am looking for ad advice to solve the following problem.
My table listed below come from a Sharepoint Document Library. Each row identifies a category and the GUID related. In the column Utenti I have several users enabled to get the notification for the articles related to that category.
I have to create a single table that contains all the users. Each row of the new table should contain the ID of the related row.
For instance, after expanded all tables in a single one, all the rows that belong to ID 1 should have the same ID to garantee the join.
Do you think it is possble to get such result?
Thanks
Solved! Go to Solution.
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
MergeTable
Reference link:
Regards,
Xiaoxin Sheng
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
MergeTable
Reference link:
Regards,
Xiaoxin Sheng
Hi @Anonymous
Thanks for you reply. I can't share those tables due their content.
Anyway, I would like to adopt you method and I am trying to apply it although it is not so clear to me.
I'll go on and in case I'll ask you more info.
Thanks again
If you expand the column "Utenti" with the arrows: Isn't that what you need?
Imke Feldmann (The BIccountant)
If you liked my solution, please give it a thumbs up. And if I did answer your question, please mark this post as a solution. Thanks!
How to integrate M-code into your solution -- How to get your questions answered quickly -- How to provide sample data -- Check out more PBI- learning resources here -- Performance Tipps for M-queries
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
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 66 | |
| 48 | |
| 43 | |
| 26 | |
| 19 |
| User | Count |
|---|---|
| 198 | |
| 126 | |
| 102 | |
| 67 | |
| 50 |