在 google 工作表中,如果我有两列彼此相邻,我怎样才能将它们自动组合成一列?不是连接?

In google sheets if I have two columns next to each other, how can I combine them automatically into a single column? NOT concatenation?

换句话说,如果第一列是

1
2
3

和第二栏

4
5
6

应该只有一栏

1
2
3
4
5
6

谢谢

您可以将范围放在方括号 {} 中,用分号分隔 ;

在您的情况下,您希望将新列表放入的单元格中有 ={A1:A3;B1:B3}A1:A3 是第一列,B1:B3 是第二列)。根据需要相应地更改范围。