Forum Discussion
Aurora-BI
2 years agoHelper I
How to Transpose / transform multiple rows into a few columns
Hi Everyone, I need a little help figuring out how to transpose or transform some data in my Power BI report. Every 19 rows, the data "repeats" so I am thinking I will need a table with 1...
slorin
2 years agoSuper User
Hi
= Table.FromRows(
List.Split(Your_Source[Column2],19),
List.FirstN(Your_Source[Column1],19)
)
Stéphane