Forum Discussion
16Teams
Nov 22, 2020Copper Contributor
Anything in Excel that would put the attached into three columns
I want the list below to be put in a format like the top three (without the gaps)
- Nov 27, 2020
Hi,
This is a common Excel problem where we need to Unstack records (rows ► columns)
You watch 4 different ways to do that:
https://www.youtube.com/watch?v=LzEGcRWEmRw
Hope that helpsNabil Mourad
PeterBartholomew1
Nov 30, 2020Silver Contributor
A simple lookup by index should do the job. Given an index column 'k' for the output table and naming the 2-column input table 'data', the formula
= INDEX(data, {1,2,1} + 2*(k-1), {1,1,2})
would return the data in the layout required.
16Teams
Dec 02, 2020Copper Contributor
PeterBartholomew1 The attached S/S with the formula =MOD(ROW()-1,3) does all what I wanted. Thanks for your input. Merry Christmas.