从多个电子表格计算唯一性和分组依据

问题描述 投票:1回答:1

我在处理数据时遇到问题。我需要从多个工作表中查询唯一ID,并按特定条件进行分组。

这里是Google工作表示例,因此您可以查看上下文

https://docs.google.com/spreadsheets/d/1Pudng2o1JjHpapFrxfciyZMRzodRRG9eroCl1yMb9vE/edit?usp=sharing

期待帮助!

google-sheets google-sheets-formula google-sheets-query google-query-language count-unique
1个回答
0
投票

尝试:

=QUERY(UNIQUE({Sheet1!A2:B; Sheet2!A2:B; Sheet3!A2:B}), 
 "select Col2,count(Col2) 
  where Col2 is not null 
  group by Col2
  label count(Col2)''", 0)

0

© www.soinside.com 2019 - 2024. All rights reserved.