converting rows into multiple columns

2019-09-21 04:15发布

need help with index function. i have a bunch of data on row A and need to split them to two rows instead but retaining their alphabetical order. as the image shows.

example of what i need

1条回答
Ridiculous、
2楼-- · 2019-09-21 05:09

Put this following standard formula in C1,

=INDEX($A:$A, INT((ROW(1:1)-1)/7)*14+MOD(ROW(1:1)-1, 7)+SIGN(COLUMN(A:A)-1)*7+1)&""

Copy it to E1 then fill both down until you run out of entries.

    Split Columns of data with formula

查看更多
登录 后发表回答