Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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 in the offer table where i can have the list of name per offer !
the results that i want is the following :
Can i do that with Dax or power Query please ?
Thanks in advance to everyone !
Solved! Go to Solution.
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
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
Hey @Anonymous
This is what you are looking for: https://community.powerbi.com/t5/Desktop/Concatenate-rows-values/td-p/41936
Yours would be something close to CANDIDATE NAME = CONCATENATEX('Apllication',[Candidate name]," , ")
If this helps please kudo.
If it answers your question please also accept it as a solution.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 41 | |
| 38 | |
| 36 | |
| 31 | |
| 28 |
| User | Count |
|---|---|
| 129 | |
| 88 | |
| 79 | |
| 68 | |
| 63 |