Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Hi,
Two fields of project table, ProjectIntitator and ProjectManager has values of WorkerId from WorkerTable.
I need to display names of ProjectInitiator and ProjectManager, but the name field from Worker table will always display only one value...
I created a new table as WorkerTableMgr(WorkerTable) and pointed ProjectManager of project table to WorkerId in new table.
But I am trying to figure out if we can have any other way to achieve this instead of duplicating the whole table..
Solved! Go to Solution.
Hi @BrianSK,
Based on my assumption, I created two sample tables like below:
ProjectTable WorkerTable
You want to display corresponding name from WorkerTable in ProjectTable, right? If so, please create calculated columns in ProjectTable as below:
Name of Intitator = LOOKUPVALUE('Worker Table'[Name],'Worker Table'[WorkerId],'Project Table'[ProjectIntitator]) Name of Manager = LOOKUPVALUE('Worker Table'[Name],'Worker Table'[WorkerId],'Project Table'[ProjectManager])
Best regards,
Yuliana Gu
Hi @BrianSK,
Based on my assumption, I created two sample tables like below:
ProjectTable WorkerTable
You want to display corresponding name from WorkerTable in ProjectTable, right? If so, please create calculated columns in ProjectTable as below:
Name of Intitator = LOOKUPVALUE('Worker Table'[Name],'Worker Table'[WorkerId],'Project Table'[ProjectIntitator]) Name of Manager = LOOKUPVALUE('Worker Table'[Name],'Worker Table'[WorkerId],'Project Table'[ProjectManager])
Best regards,
Yuliana Gu
Thanks a lot Yuliana !
Here's one approach to get you thinking ... https://powerpivotpro0-my.sharepoint.com/personal/austin_powerpivotpro_com/_layouts/15/guestaccess.a...
The relationship between projects and workers is complex, it's many to many.
Hi,
Share a sample dataset and show the expected result.
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
89 | |
86 | |
82 | |
64 | |
49 |
User | Count |
---|---|
124 | |
110 | |
88 | |
68 | |
66 |