Google Spreadsheets-查找列中的前五个值

时间:2018-06-24 13:31:03

标签: google-sheets

我在Google电子表格中有一列,其中每个单元格都包含一个单词。我需要找到最常出现的前五个词。有人知道我该怎么做到吗?

2 个答案:

答案 0 :(得分:2)

=query(A:A,"select A,count(A) group by A order by count(A) desc limit 5 label A 'Word',count(A) 'Frequency' ")

答案 1 :(得分:0)

从“帮助”列开始。在右侧未使用的列中,在包含第一个单词的行中使用此公式,然后填写。

=if(countif(A$2:A2, A2)=1, countif(A$2:A, A2), "")

现在,您可以在另一列中使用此公式来构建“最常见的五个单词”列表。

=index(A$2:A, match(large(B$2:B, row(1:1)), B$2:B, 0))

Linked sample worksheet