Transpose Excel columns while stacking grouped columns

culper76

New Member
Joined
Mar 23, 2020
Messages
6
Office Version
  1. 365
Platform
  1. Windows
I've looked through quite a few similar postings and articles but so far haven't found anything that really solves the issue (this very well could be due to my inexperience with the formulas and lack of macros). Essentially, I'm trying to transpose a large amount of rows but maintaining groups. I almost had luck with an =Offset fix I saw but was struggling to get the rows to repeat in the groupings. The issue I've had here is it still seems to go to one column and I'd have to redo or manually slice up the overall column. If I transpose the entire data set then I have the columns in the correct order, but would still have to rearrange the columns and rows in a zigzagging manner. Here's an example of my data and where I need to get it:

Original:
HTML:
<table><tbody><tr><th> </th><th>msa1</th><th>msa2</th><th>msa3</th><th>unem1</th><th>unem2</th><th>unem3</th></tr><tr><td>city1</td><td>1001</td><td>1002</td><td>1003</td><td>6.2</td><td>6.3</td><td>5.5</td></tr><tr><td>city2</td><td>2001</td><td>2002</td><td>2003</td><td>5.7</td><td>5.3</td><td>4.5</td></tr><tr><td>city3</td><td>3001</td><td>3002</td><td>3003</td><td>7.8</td><td>8.3</td><td>7.1</td></tr></tbody></table>

Transposed:
HTML:
<table><tbody><tr><th> </th><th>city1</th><th>city2</th><th>city3</th></tr><tr><td>msa1</td><td>1001</td><td>2001</td><td>3001</td></tr><tr><td>msa2</td><td>1002</td><td>2002</td><td>3002</td></tr><tr><td>msa3</td><td>1003</td><td>2003</td><td>3003</td></tr><tr><td>unem1</td><td>6.2</td><td>5.7</td><td>7.8</td></tr><tr><td>unem2</td><td>6.3</td><td>5.3</td><td>8.3</td></tr><tr><td>unem3</td><td>5.5</td><td>4.5</td><td>7.1</td></tr></tbody></table>

End product:
HTML:
<table><tbody><tr><th> </th><th>msa</th><th>unem</th></tr><tr><td>city1</td><td>1001</td><td>6.2</td></tr><tr><td>city1</td><td>1002</td><td>6.3</td></tr><tr><td>city1</td><td>1003</td><td>5.5</td></tr><tr><td>city2</td><td>2001</td><td>5.7</td></tr><tr><td>city2</td><td>2002</td><td>5.3</td></tr><tr><td>city2</td><td>2003</td><td>4.5</td></tr><tr><td>city3</td><td>3001</td><td>7.8</td></tr><tr><td>city3</td><td>3002</td><td>8.3</td></tr><tr><td>city3</td><td>3003</td><td>7.1</td></tr></tbody></table>


Does anyone have any ideas using either the original or transposed data that would get to the end product? Thanks in advance
 
just for fun
Code:
let
    Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
    unem = Table.UnpivotOtherColumns(Source, {"city", "unem1", "unem2", "unem3"}, "Attribute", "unem"),
    msa = Table.UnpivotOtherColumns(unem, {"city", "Attribute", "unem"}, "Attribute.1", "msa"),
    group = Table.Group(msa, {"city", "unem"}, {{"table", each _, type table}}),
    IndexMod = Table.TransformColumns(Table.AddIndexColumn(group, "IndexMod", 0, 1), {{"IndexMod", each Number.Mod(_, 3), type number}}),
    extract = Table.AddColumn(IndexMod, "msa", each Table.Column([table],"msa"){[IndexMod]}),
    TSC = Table.SelectColumns(extract,{"city", "unem", "msa"})
in
    TSC
 
Last edited:
Upvote 0

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
Thanks for the replies and help, looks like I finally got it iron out! Appreciate it
 
Upvote 0
Here is a totally different way to go about this in PQ

Code:
let
    Source = Excel.CurrentWorkbook(){[Name="Table2"]}[Content],
    Transform = Table.FromList(Table.TransformRows(Source, (row) => Table.FromRows({{row[Column1],row[msa1],row[unem1]},{row[Column1],row[msa2],row[unem2]},{row[Column1],row[msa3],row[unem3]}},{"city","msa","unem"})), Splitter.SplitByNothing(), null, null, ExtraValues.Error),
    Extract = Table.ExpandTableColumn(Transform, "Column1", {"city", "msa", "unem"}, {"city", "msa", "unem"})
in
    Extract
 
Upvote 0

Forum statistics

Threads
1,216,086
Messages
6,128,734
Members
449,466
Latest member
Peter Juhnke

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top