I need to unpivot a table in Excel, by shifting (not transposing) some columns of data into a single column of data over multiple rows.
From what I have read, the Power Query add-in is exactly what I would need. However, my company still runs Excel 2010 and does not have the "Software Assurance" package, so I cannot install the Power Query add-in. Is there a formula or other method to unpivot a table without Power Query?
My data looks as follows, with the numbers under each day showing the day's consumption:
- SKU Monday Tuesday Wednesday Thursday
- ABC 5 7 2 3
- DEF 1 5 2 7
I want it to look like this:
- SKU Day Consumption
- ABC Monday 5
- ABC Tuesday 7
- ABC Wednesday 2
- ABC Thursday 3
- DEF Monday 1
- DEF Tuesday 5
- DEF Wednesday 2
- DEF Thursday 7
I thought that transposing would work, but it swaps the rows and columns instead.