Google表格:列出按其他列分组的唯一值

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

在Google表格中,我需要为列A中的每个唯一值提取B列中的唯一值,以便我可以构建下表:

可能?

google-sheets google-sheets-formula google-sheets-query
2个回答
1
投票
=Unique(A:B)

应足以返回非重复行

https://support.google.com/docs/answer/3093198?hl=en

enter image description here

您也可以使用Sortn:

=sortn(A:B,9E+99,2,1,true,2,true)

1
投票
=QUERY(QUERY(A1:B, 
 "select A, B, count(A) 
  group by A, B", 1),
 "select Col1, Col2
  where Col1 is not null", 1)

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