Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
PVVBl00
Helper III
Helper III

bring all values to the row

Hello everyone, I tell you that I have a table similar to this,

PVVBl00_1-1665776675339.png

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:

PVVBl00_2-1665776718558.png

 

 

 

1 ACCEPTED SOLUTION
Ashish_Mathur
Super User
Super User

Hi,

This measure works

Measure = CONCATENATEX(VALUES(Data[NRO]),Data[NRO],",")

Hope this helps.

Untitled.png


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

View solution in original post

6 REPLIES 6
Ashish_Mathur
Super User
Super User

Hi,

This measure works

Measure = CONCATENATEX(VALUES(Data[NRO]),Data[NRO],",")

Hope this helps.

Untitled.png


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

It's Perfect, Thanks You

You are welcome.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
rsbin
Super User
Super User

@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,

mangaus1111
Solution Sage
Solution Sage

Hi @PVVBl00 ,

 

try this calculated column:

 

mangaus1111_0-1665777561878.png

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

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors