Google 工作表 - 使用带计数的查询

Google Sheets - Using Query with Count

我在 I3:Z 中有数据,我已将命名范围分配给 -“数据”。

我有以下公式:

=QUERY(UNIQUE(FLATTEN(Data)))

其中 returns 所有唯一数据条目的列表。

我还想在公式中添加一个计数,以便显示每个数据条目出现了多少次,然后按所述数字对整个结果进行排序。

谢谢

尝试

=query({query(flatten(data),"select Col1 where Col1 is not null"),sequence(COUNTA(data),1,1,0)},"select Col1,sum(Col2) group by Col1 label sum(Col2) 'Nb' ")

使用:

=QUERY(FLATTEN(Data); 
 "select Col1,count(Col1)
  where Col1 is not null 
  group by Col1 
  order by count(Col1) desc 
  label count(Col1)''")