📜  第一个空格上的 excel 拆分列 - 无论代码示例

📅  最后修改于: 2022-03-11 14:57:37.697000             🧑  作者: Mango

代码示例1
In the column for the first half:
=LEFT(A1,FIND(" ",A1)-1)

In the column for the remainder:
=RIGHT(A1,LEN(A1)-FIND(" ",A1))