Forum Discussion
BrianSK
8 years agoRegular Visitor
Two columns with different values in one table pointing to a single column of another table.
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 fiel...
- 8 years ago
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
v-yulgu-msft
Microsoft Employee
8 years agoHi 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
BrianSK
8 years agoRegular Visitor
Thanks a lot Yuliana !