Forum Discussion
Anonymous
4 years agoNot applicable
Table transformation
I have a table that looks like this - ID Financial Code 1 123 2 456 3 789 3 102 2 223 1 413 And, I'd like to transform it into the following table as it enable...
Samarth_18
4 years agoCommunity Champion
Hi Anonymous ,
You can create a measure like below:-
Measure =
CONCATENATEX ( VALUES ('Table'[Financial Code] ), [Financial Code], "," )
Output:-
Thanks,
Samarth