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

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

Reply
Rygar
Helper II
Helper II

Multi transpose from one column

Hi Community! 

 

I need some kind of multi transpose from a column:

Rygar_0-1661960260891.png

Example File here: https://edvadamsde-my.sharepoint.com/:x:/g/personal/adams_edv-adams_de/EcJEphvMqcdGo4MbaM8iMw8BJoC4i... 

 

Thanks and regards,

Michael

 

2 ACCEPTED SOLUTIONS
wdx223_Daniel
Super User
Super User

just for the data you shown

=#table(4,List.Split(PreviousStepName[Column1],4))

View solution in original post

Nice approach, it worked, thanks a lot!

View solution in original post

6 REPLIES 6
wdx223_Daniel
Super User
Super User

just for the data you shown

=#table(4,List.Split(PreviousStepName[Column1],4))

Thanks a lot for this elegant solution!

This is awesome. Never thought of using List.Split ever. You taught me this trick. Thank you, so much.

it's my pleasure.

HotChilli
Super User
Super User

Add an Index column

Add a custom column using Number.IntegerDivide to divide the Index Column by 4 (as you have groups of 4).

Add a custom column(name it Heading) using Number.Mod([Index], 4) to create the field which we will use for column headings.

Then remove the Index column

Then Pivot the Heading column (pick the original column for Values column and Don't Aggregate)

--

That's the method.  Have a go and I can help if you get stuck (There will be exact examples on this forum or the web too)

Nice approach, it worked, thanks a lot!

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 Kudoed Authors