我目前正在使用Microsoft Excel 2013,我有一大列数据,我想将其分成三列。我想离开这个:
name_1
timestamp_1
comment_1
name_2
timestamp_2
comment_2
...
name_N
timestamp_N
comment_N
到此:
name_1 timestamp_1 comment_1
name_2 timestamp_2 comment_2
...
name_N timestamp_N comment_N
有没有办法实现这个目标?
答案 0 :(得分:2)
另一种非VBA方式,添加一个编号如下所示的列
1 name_1
2 timestamp_1
3 comment_1
1 name_2
2 timestamp_2
3 comment_2
...
1 name_N
2 timestamp_N
3comment_N
选择C2:E2,然后输入TRANSPOSE(B2:B4) 然后按CTRL + SHIFT + Enter
然后复制公式以记录Num = 1(使用自动过滤器)
答案 1 :(得分:1)
我假设您的数据在单列中。你可以创建一个子来完成这个
Sub rowToColumn()
nRow = 2 'Assume u have header on Row 1
Do until cells(nRow,"A") = ""
cells(nRow, 2) = cells(nRow + 1, "A")
cells(nRow, 3) = cells(nRow + 2, "A")
'Then remove the additional row.....
bla bla bla......
nRow = nRow + 1
Loop
End sub
答案 2 :(得分:0)