在 google sheet 中每隔一行转置一次
Transpose every other row in a google sheet
我得到了一个格式错误的 sheet,其中有数千条记录在下一行而不是同一行和下一列中具有 X 和相应的 Y 值。
是否有允许我复制更改行的功能?
所以...
A2 goes into B2 and A3 goes into C2
A4 goes into B3 and A5 goes into C3
等等
样本 sheet 在 https://docs.google.com/spreadsheets/d/1fB2rpVdJiTmp96sjGZiIYvKxEL9DLiK7W7QU8-4AN3A/edit?usp=sharing
我更喜欢 Google Sheet 解决方案,但 excel 也可以。
删除 B2:C 范围内的所有内容并尝试:
={FILTER(A2:A, A2:A<>"", MOD(ROW(A2:A), 2)=0),
FILTER(A2:A, A2:A<>"", MOD(ROW(A2:A)+1, 2)=0)}
我得到了一个格式错误的 sheet,其中有数千条记录在下一行而不是同一行和下一列中具有 X 和相应的 Y 值。
是否有允许我复制更改行的功能?
所以...
A2 goes into B2 and A3 goes into C2
A4 goes into B3 and A5 goes into C3
等等
样本 sheet 在 https://docs.google.com/spreadsheets/d/1fB2rpVdJiTmp96sjGZiIYvKxEL9DLiK7W7QU8-4AN3A/edit?usp=sharing
我更喜欢 Google Sheet 解决方案,但 excel 也可以。
删除 B2:C 范围内的所有内容并尝试:
={FILTER(A2:A, A2:A<>"", MOD(ROW(A2:A), 2)=0),
FILTER(A2:A, A2:A<>"", MOD(ROW(A2:A)+1, 2)=0)}