I have a huge list (60K rows) of a hex dump (8 chars per cell). I need to group these from one column (as they are now), into a table 20 wide by 31 tall. I started to do this manually bit there’s no way I can finish it any day soon. I need some help on how to automate it with a better formula, probably offset? The numbers are 31 cells separated by 4 rows so the pattern is consistent.
aa
bb
cc
dd
ee
mm
nn
oo
pp
qq
Output:
aa mm
bb nn
cc oo
dd pp
ee qq
So it is similar to transposing a set of data from rows to cols but with an offset.
How can I do this quickly (and smarter than the dumb way I’m doing it now)? The attached file is 25% of the actual data.
Deb