Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now
Hello,
I am trying to change the table below :
To look like this:
Material | Work Ctr |
9266802471 | TBD24 TBE22 TBE24 |
Basically have all "Work Ctr" for the material 9266802471 listed into one cell with one space between each. How can I do this ?
Regards
Solved! Go to Solution.
Hi @ludovic_ott ,
You can create a calculated column as below to get it:
Column =
CONCATENATEX (
FILTER ( 'Table', 'Table'[Material] = EARLIER ( 'Table'[Material] ) ),
'Table'[Work Ctr],
" ",
'Table'[Work Ctr], ASC
)
Best Regards
Hi @ludovic_ott ,
You can create a calculated column as below to get it:
Column =
CONCATENATEX (
FILTER ( 'Table', 'Table'[Material] = EARLIER ( 'Table'[Material] ) ),
'Table'[Work Ctr],
" ",
'Table'[Work Ctr], ASC
)
Best Regards
read about CONCATENATEX in DAX, or Text.Combine in Power Query
Check out the October 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
115 | |
112 | |
105 | |
95 | |
58 |
User | Count |
---|---|
174 | |
147 | |
136 | |
102 | |
82 |