如何在 Excel 中将一个单元格的第一个字符与另一个单元格合并?

发布于 2024-07-13 23:43:37 字数 237 浏览 6 评论 0原文

我有一个 Excel 工作表,A 列中包含名字,B 列中包含姓氏。我想创建第三个 C 列,其中包含名字的第一个字符并将其添加到姓氏中,创建首字母 + 姓氏< /em>.

First Name    Last Name    Combined Name
John          Smith        jsmith

我如何使用 Excel 来完成此操作?

I have an Excel sheet with first names in Column A and surnames in Column B. I want to create a third Column C that contains the first character from the first name and adds it to the surname, creating first initial + surname.

First Name    Last Name    Combined Name
John          Smith        jsmith

How can I do this using Excel?

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

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

发布评论

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

评论(6

2024-07-20 23:43:37
=CONCATENATE(LEFT(A1,1), B1)

假设 A1 拥有第一名; B1 姓氏

=CONCATENATE(LEFT(A1,1), B1)

Assuming A1 holds 1st names; B1 Last names

你穿错了嫁妆 2024-07-20 23:43:37

我个人喜欢& 如果您想在

假设您使用 John Smith 的单元格 A1 和 A2

=left(a1,1) & b1

其间添加文本,例如句点

=left(a1,1) & "." & b1

Personally I like the & function for this

Assuming that you are using cells A1 and A2 for John Smith

=left(a1,1) & b1

If you want to add text between, for example a period

=left(a1,1) & "." & b1
咽泪装欢 2024-07-20 23:43:37

使用以下公式:

=CONCATENATE(LOWER(MID(A1,1,1)),LOWER( B1))

注意

Josh Smith = jsmith

A1 包含姓名,B1 包含姓氏

Use following formula:

=CONCATENATE(LOWER(MID(A1,1,1)),LOWER( B1))

for

Josh Smith = jsmith

note that A1 contains name and B1 contains surname

夏の忆 2024-07-20 23:43:37

这是我用来将两个不同单元格中名字的第一个字母和姓氏的第一个字母合并为一个的公式:

=CONCATENATE(LEFT(F10,1),LEFT(G10,1))
Lee Ackerman = LA

This is what formula I used in order to get the first letter of the first name and first letter of the last name from 2 different cells into one:

=CONCATENATE(LEFT(F10,1),LEFT(G10,1))
Lee Ackerman = LA
两相知 2024-07-20 23:43:37

不知道为什么没有人使用分号。 这对我来说是这样的:

=CONCATENATE(LEFT(A1;1); B1)

带有逗号的解决方案在 Excel 中会产生错误。

Not sure why no one is using semicolons. This is how it works for me:

=CONCATENATE(LEFT(A1;1); B1)

Solutions with comma produce an error in Excel.

梦醒灬来后我 2024-07-20 23:43:37

问题是:假设T john要转换为john T,在excel中如何更改?

如果文本“T john”位于单元格 A1 中

=CONCATENATE(RIGHT(A1,LEN(A1)-2)," ",LEFT(A1,1))

并且指向 & crowd

=RIGHT(A1,LEN(A1)-2)&" "&LEFT(A1,1)

获取字符串的右侧部分(不包括前 2 个字符),添加一个空格,然后添加第一个字符。

QUESTION was: suppose T john is to be converted john T, how to change in excel?

If text "T john" is in cell A1

=CONCATENATE(RIGHT(A1,LEN(A1)-2)," ",LEFT(A1,1))

and with a nod to the & crowd

=RIGHT(A1,LEN(A1)-2)&" "&LEFT(A1,1)

takes the right part of the string excluding the first 2 characters, adds a space, adds the first character.

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