Forum Discussion
Anonymous
6 years agoNot applicable
Dax Join
Greeting all , i need a trick so i can implement role access via power bi i have 2 tables Offer and application Offer : Application : i want to add a column i...
- 6 years ago
Hi,
Please try to create a calculated column:
Column = CONCATENATEX(RELATEDTABLE('Application'),[Candidate name],",")Or you can create a measure:
Measure = CONCATENATEX('Application',[Candidate name],",")And both of them show what you want:
Hope this helps.
Best Regards,
Giotto Zhi
v-gizhi-msft
6 years agoCommunity Support
Hi,
Please try to create a calculated column:
Column = CONCATENATEX(RELATEDTABLE('Application'),[Candidate name],",")
Or you can create a measure:
Measure = CONCATENATEX('Application',[Candidate name],",")
And both of them show what you want:
Hope this helps.
Best Regards,
Giotto Zhi