Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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.
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
105 | |
99 | |
99 | |
38 | |
37 |
User | Count |
---|---|
157 | |
120 | |
74 | |
72 | |
63 |