Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 excel,我需要在某些单元格的开头添加文本。
假设我有以下单元格:
IO KP HU IO
我想将它们替换为:
5IO 5KP 5HU 5IO
所以我选择这些单元格并使用查找和替换功能。在搜索中,我输入了“*”,但为了保留 * 返回的文本,我应该输入什么?这将是“5SOMETHING”。
我认为Find and Replace它不够灵活,无法执行您想要的操作,即附加5到每个单元格。
Find and Replace
5
最简单的方法是使用此公式创建一个新列,然后删除原始列。[我假设您的数据在 A 列]
=5 & A1
如果你愿意,你也可以通过 VBA 来完成。
Sub AppendFive() Dim cl As Range For Each cl In Range("A1:A10") cl = 5 & cl Next cl End Sub