如何区分单元格的名字和姓氏?

发布于 2024-09-03 14:35:54 字数 89 浏览 3 评论 0原文

如果单元格 A1 包含 [Jones,Mike],我怎样才能将其分开,但仍使用名字作为另一个单元格中的文本?是的,文本到列会很有用,但它确实允许我在公式中使用名字。

If cell A1 contains [Jones,Mike], how can I get it to separate but still use the first name as text in the other cell? Yes, text to columns would work greatly, but it does let me use the first name in a formula.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

孤寂小茶 2024-09-10 14:35:54

姓名填写在 A1 中,姓氏:

=LEFT(A1,FIND(",",A1,1)-1)

名字:

=RIGHT(A1,FIND(", ",A1,1)-2)

With name in A1, for surname:

=LEFT(A1,FIND(",",A1,1)-1)

For first name(s):

=RIGHT(A1,FIND(", ",A1,1)-2)
洛阳烟雨空心柳 2024-09-10 14:35:54

例如:John Doe

名字:

=LEFT(A1,FIND(" ",A1,1)-1)

通过查找单元格字符串中的“”(空格)字符位置计算从左侧开始的名字长度,-1 删除计数中的空格。

姓氏:

=RIGHT(A1,(LEN(A1)-FIND(" ",A1,1)))

通过首先查找姓氏开头的值来计算姓氏字符串长度。完整单元格长度减去名字+空格。

例如:Doe、John

姓氏:

=LEFT(A1,FIND(",",A1,1)-2)

名字:

 =RIGHT(A1,(LEN(A1)-FIND(",",A1,1)))

Ex: John Doe

First name:

=LEFT(A1,FIND(" ",A1,1)-1)

Calculate first name length from left by Finding the " " (Space) character position in the cell string, -1 to remove the space in the counting.

Surname:

=RIGHT(A1,(LEN(A1)-FIND(" ",A1,1)))

Calculate Surname string length by first finding the value where surname starts. Full cell length minus first name + the space.

Ex: Doe,John

Surname:

=LEFT(A1,FIND(",",A1,1)-2)

First name:

 =RIGHT(A1,(LEN(A1)-FIND(",",A1,1)))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文