本文介绍了获取一列逗号分隔值的计数和唯一值?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
假设我只有下面的A列
+ +
A | B | C
+--------------|---------|----------+
| |
X, Y, Z | X | 3
| |
X, Z | Y | 2
| |
X, Y | Z | 2
+ +
我如何生成 B 列和 C 列 - 其中 B 列从 A 中获取唯一元素,而 C 列生成这些值的计数.
How do I generate columns B and C - where the B column grabs the unique elements from A, and the C column generates a count of those values.
推荐答案
=ArrayFormula(QUERY(TRANSPOSE(SPLIT(JOIN(",",A:A),",")&{"";""}),"select Col1, count(Col2) group by Col1 label count(Col2) ''",0))
这篇关于获取一列逗号分隔值的计数和唯一值?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!