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.
我有一列带有重复值的文本值。我想创建一个新的唯一值列(不重复)和一个列,其中包含每个值的频率。
最简单的方法是什么?效率不是什么大问题,因为它不到 10,000 行。
为了答案而不是评论,将列(比如 A)复制到 B(比如),仅对于 B 数据 > 数据工具 - 删除重复项,然后在 C2 中输入:
=COUNTIF(A:A,B2)
并根据需要复制下来
或(首选选项)
使用数据透视表作为@Tim: