Forum Discussion
Anonymous
6 years agoNot applicable
Creating a new column by combining two different columns from different tables
I have three different tables - Master, Servers and Workstations. They all contain the same columns but Server and Workstation are filtered for Device Type = Server or Workstation. The tables, S...
- 6 years ago
Hi Anonymous ,
If you have the "one to many" relationship from master tables to the others, we can try to create a calculated column using following formula:
Status = "Server: " & CONCATENATEX ( RELATEDTABLE ( 'Server' ), [Status], "," ) & UNICHAR ( 10 ) & "Workstation: " & CONCATENATEX ( RELATEDTABLE ( 'Workstation' ), [Status], "," )If they have the one to one relationship, we can use the following formula to create a calculated column:
Status = "Server: " & RELATED ( 'Server'[Status] ) & UNICHAR ( 10 ) & "Workstation: " & RELATED ( 'Workstation'[Status] )
If it doesn't meet your requirement, kindly share your sample data and expected result to me if you don't have any Confidential Information. Please upload your files to One Drive and share the link here.
Best regards,
v-lid-msft
6 years agoCommunity Support
Hi Anonymous ,
How about the result after you follow the suggestions mentioned in my original post?Could you please provide more details about it If it doesn't meet your requirement?
Best regards,