Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hello everyone, I tell you that I have a table similar to this,
what I would like to do is find a way to concatenate all the values, the ideal is that it is in a pure row
EJ:
Solved! Go to Solution.
Hi,
This measure works
Measure = CONCATENATEX(VALUES(Data[NRO]),Data[NRO],",")
Hope this helps.
Hi,
This measure works
Measure = CONCATENATEX(VALUES(Data[NRO]),Data[NRO],",")
Hope this helps.
It's Perfect, Thanks You
You are welcome.
@PVVBl00 ,
I believe this is what you are looking for. Creating a New Table:
NRO_Revised = SUMMARIZECOLUMNS( NRO[CODE],
"NRO", CONCATENATEX( NRO, [NRO], "," ))
CODE NRO
| A | 111,222,333,444 |
| B | 554,231,316 |
Trust this works for you,
Regards,
Hi @PVVBl00 ,
try this calculated column:
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
It works well thank you very much, but what matters most to me is to bring the values separately, in a row those of the a, then below the b and so on down
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.