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.
如何在不使用 VBA 的情况下为 Excel 删除一行中的重复项?
我有的:
第 1 行:1 | 1 | 2 | 2 | 3 | 3
1 | 1 | 2 | 2 | 3 | 3
我想要的是:
第 1 行:1 | 2 | 3
1 | 2 | 3
如果您不关心空格并且单元格 A1:F1 中有六个数字,则可以在单元格 A2:F2 中执行此操作:
=IF(COUNTIF($A$1:A1, A1) > 1, "", A1)
然后把它拖过去。对于您的示例,这将导致 1, ,2, ,3, 。
首先,使用 [DATA] 选项卡中的 [Text to columns] 将单元格拆分为列 2:转置数据 3:[数据]选项卡中的[删除重复项] 4:转置数据 5:连接细胞