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 文件:
姓名 | 年龄 | 笔记
我需要创建一个列,其中包含这三个列的数据并在其间用下划线连接起来。
例如:
约翰 | 89 | 帅气 |
应该看起来像
john_89_handsome。
我该怎么做?
此公式允许您以您想要的形式连接值:
= A1 & "_" & B1 & "_" & C1