Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
I have a system that exports data to a file that is imported into Power Query with this format:
Column1 | Column2 | Column3 | Column4 | Column5 | Column6 |
a | b | c | |||
d | e | f | |||
g | h | i | |||
j | k | l | |||
m | n | o | |||
p | q | r |
The values of pair rows must be in columns 4, 5 and 6 of the unpair columns. The results should be something like this:
Column1 | Column2 | Column3 | Column4 | Column5 | Column6 |
a | b | c | d | e | f |
g | h | i | j | k | l |
m | n | o | p | q | r |
Is there any way to do this transformation in Power Query?
Hi
=Table.FromRows(List.Transform(List.Split(Table.ToRows(Previous_Step),2), List.Combine))
Stéphane
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
8 | |
6 | |
6 | |
6 | |
5 |