Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Hello!
i have a situation like the one below:
where i have an id column that is not unique and one or more names (generally strings) linked to it.
i want to have a custom column that for each unique id gives me all the FullName linked to them. like below
there is no limit on how many full names are linked to one id, so i tryed something avoiding cross joins.
i have no preferences in having this syntax in DAX or in power query. i think in dax is more easy than power query but maybe it's not... can someone give me a hint?
Solved! Go to Solution.
You could try this as a calculated column
All Names =
CALCULATE (
CONCATENATEX ( 'Table', 'Table'[Full name], ", " ),
ALLEXCEPT ( 'Table', 'Table'[id] )
)
You could try this as a calculated column
All Names =
CALCULATE (
CONCATENATEX ( 'Table', 'Table'[Full name], ", " ),
ALLEXCEPT ( 'Table', 'Table'[id] )
)
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
94 | |
92 | |
83 | |
71 | |
49 |
User | Count |
---|---|
143 | |
120 | |
110 | |
59 | |
57 |