Stacking non-nested groups of repeating columns in Power Query

There are plenty examples on how to unpivot nested tables (some brilliant ones can be found here and here). But what if a table we need to make flat has no nested headers for repeating groups of columns? It ought to be nested, but it doesn’t. And standard unpivoting methods then do not works then.

Stacking (or unpivoting) non-nested groups of columns is not a common task, but sometimes it appears. It could be due to bad constructed software report or hand-made user table in Excel or web-page scrapping. But in some case, we meet with this horror.

Once a client asked me to help with intelligence on his database. Of course, I agreed. But when I saw this “database” which he proudly presented to me, I was glad that the customer does not see my face and did not hear any comments passed my lips.

There was an Excel worksheet with more than 100 (one hundred) columns with more than 10000 rows, with all diversity of data in it. About 80 columns was in repeating groups, named “Date”, “Sum”, “Date”, “Sum” …. “Date”, “Sum” – without nesting or grouping.

For some reasons, when a VBA solution couldn’t be applied (especially if you work in Power BI and want to pull data in it without voodoo dances), the only way to flatten this table was using the Power Query for Excel 2010-2013 (or “Get Data” in Power BI, “Get & Transform” in Excel 2016).

Working on that task I discovered that there are at least four ways of doing it. You can choose the method that best suits your case.

As-is and to-be

What we have in source and what we need to get shown on the picture below:

Stacking Paired Columns

The source and the target: not so easy…

Actually we need to stack repeating groups one under other, keeping in place the common data from first columns.

For demonstration purposes I prepared a sample workbook, where source is in named range “UglyTable” (I was ruthless). You can download it here.

Classical stacking (by appending queries)

The first solution (looking obvious) for this task that I found after some googling and thinking was using of “append queries” method.

Indeed, if we want to place one table below another with the same structure, we need to append. So the algorithm for this method is in next steps:

  1. Extract first group of columns (included common columns and first repeating group of columns).
  2. Extract second group (included common columns and second repeating group of columns).
  3. Make sure that second group has the same column names as first.
  4. Repeat steps 2 and 3 for all paired columns groups…
  5. Append all extracted tables.

Here is a simple code in M language to perform this transformation:

Although it can be done with UI on all stages, this method has a lot of manual work. When performing it with UI only, you need to create as much queries as number of repeating groups you have, and then append queries one by one in corresponding number of steps.

In sample code above I shortened this steps and place it in one query, but it takes a lot of editing.

And the main lack of this method is that whether number of groups changed, you need to add/remove some queries and edit last step (appending). So this solution could be made if you sure that table’ structure will be the same all time long.

Merging columns

As I was dissatisfied with the first method, I resumed googling and then asked Gil Raviv (a Microsoft fellow who runs Get & Transform Data in Excel 2016 blog on TechNet) in Twitter. He supposed another solution, based on a little tricky instrument he used when unpivoting nested tables.

Here the steps for this method:

  1. Merge first pair of grouped columns with some delimiter (e.g. merge “Date” and “Sum” columns
  2. Repeat this step for each pair of columns shall be stacked.
  3. Unpivot all of these merged columns.
  4. Split unpivoted values by delimiter used.
  5. Make clean-up in table and make-up data.

I love this trick – it is really interesting and not obvious. The idea is simple: as we cannot just unpivot this table because we have more than one column of the same data, we merge these columns in one, and then we get a pack of columns that can be unpivoted in usual way. And all we need then is just split data to separated columns.

Here is the code of this query:

Unpivoting with columns merge

Columns merged and ready to unpivot

Actually this method could be performed with UI only, there are no need to manually edit any string in code editor. And it is fast when refreshing, too.

But this approach also has a limitation, the same as for previous method: if number of columns changed, you need to manually add or remove steps of columns merging. And if number of groups of columns is big, it is kind of boring and need a lot of attention when you manually select two columns and merge, then repeat, then repeat…

Grouping by indexes

This approach I do not peeped and “invented” myself (although I’m sure I’m not the first one), so I proudly present it here.

  1. Promote headers (note that as columns headers initially has same names, Power Query adds numeric indexes to them because columns in a table should have different names).
  2. Use “Unpivot other columns” option on source table (all except common columns). When we look at result, we can see that our data from “repeating columns” become “repeating rows”:
    Group with Index - unpivot columns

    Paired columns unpivoted and became paired rows

    Column names moved to “Attribute” column. If they will be the same each time (“Date”, “Sum”) and has not index added to name by Power Query, it will be very easy to pivot this table by these names. Unfortunately, we can’t.

    So let us use some trick with index column:

  3. Remove “Attribute” column
  4. Add “Index” column
  5. Add custom column: use Add column – Standard – Integer Divide (divide by 2). We’ve got additional column with the same index for each pair of rows.
  6. Add another custom column: Add column – Standard – Modulo (divide by 2). We’ve got a column where each row has repeating index 1 or 0 – it will help us to group them.
  7. Now we can remove “Index” column

    Group by indexes: ready to pivoting

    Ready for pivoting

  8. Unpivot “Inserted Modulo” column (select “Value” column as values and do not aggregate).
  9. That’s almost all:

    Group by indexes: finish is close

    Almost there

  10. Now we only need to remove “Integer Divide” column and rename columns “0” and “1” to “Date” and “Sum”, and apply appropriate data types.

Here is the full M code of this method from sample workbook:

This method could be applied on tables with any number of paired columns. This is main difference form first two approaches: it doesn’t matter whether number of columns increase or decrease, after unpivoting we will work with rows.

Grouping to Records

The first time I saw this trick was on Power Query TechNet forum, when Ehren, another good Microsoft fellow, used it to collect values from one column when grouping by values in another. I adopt it to this case, and it works perfectly.

I love this approach for its use of hidden treasures of M language. The algorithm used is simple, but very interesting. The first five steps is the same as in previous method (only difference that we will not add custom column but transform “Index” column):

  1. Promote headers
  2. Unpivot al columns except common columns. Now our repeating columns becomes repeating groups of rows.
  3. Add “Index” column
  4. Transform “Index” column with use of Number.IntegerDivide function. This can be done manually or with UI: Select “Index” column, go to Transform – From Number – Standard – Divide (Integer). Our goal is to get whole number of “Index”/2 (as we have two repeating columns).
  5. Now each pair of row has the same corresponding number.
  6. And here is some magic: now we’ll group rows by this modified “Index”, but as an aggregate function we’ll use non-standard Records.FromList function. It is not in list of functions available in dialog window, so it should be entered manually or by editing of other aggregate function code:

    How this formula actually works here is really interesting:

    • it selects rows of one group
    • then from contents of column [Value] of these selected rows…
    • it creates a Record with two fields: “Date” and “Amount”, taking them sequentially “top-down” from the selected rows.

    And what we really have as a result of aggregation is a value of record type for each of grouped rows.

    The Record.FromList function itself allows to create a Record from list of values and a list of corresponding fileds names (as a second argument this function can take a value of record type, which allows to apply data types right inside function).

    Group to Records trick

    Values from grouped rows collected into Record

  7. Now we can remove “Index” and expand “Values” column by clicking on double arrow right to column name, and we got the table we need!
  8. Make sure all data has correct type assigned, close & load.

Here is full M code:

As I told before, this approach is very interesting and useful for understanding some M language concepts. Also for this “group to records” trick doesn’t matter, how many columns we will unpivot and group: 4, 8, 98, etc., so this approach is more versatile than first two.

Resume

Every of these methods is suitable for different cases, but I prefer last two: they are more versatile and could be used on table of any size.

If you not familiar with Power Query “M” language, it is supposed to use third method: modifying indexes for grouping and pivoting.

But “grouping to records” method is more technological and fast, so if you don’t afraid to edit M code, this is recommended approach.

I tested all of four methods on the table with 30 pairs of Date-Sum columns, with 7000 of rows. You can see average results of performance I got:

  • Appending queries: 16 sec
  • Merging Columns: 8 sec
  • Group by indexes: 14 sec
  • Group to Records: 6,7 sec

I still don’t sure whether these results are really average. Try it yourself too.

Follow me: Facebooktwitterlinkedinmail
Share this: Facebooktwitterredditpinterestlinkedinmail
Share this
Using the header of the report as the data for table columns in Power Query
BIN2DEC in Power Query: Implementations of List.Accumulate. Part 1