【问题标题】:Copy duplicate numbers to another cell or google sheet将重复的数字复制到另一个单元格或谷歌表
【发布时间】:2020-02-27 20:53:54
【问题描述】:

在一个 google 工作表上,我有一个页面自动填充 A 列中的数据。在另一张工作表上,我试图输入一个公式,该公式不仅计算重复数字,还显示哪些数字重复以及如何重复很多次。例如,数字 7734 在工作表 1 上的五个不同行中,那么我如何才能在工作表 2 上有两列显示 7734 5(或类似)? 非常感谢。

【问题讨论】:

  • 请分享您的电子表格副本,以便我们处理一些数据。

标签: google-sheets count duplicates google-sheets-formula google-sheets-query


【解决方案1】:

尝试:

=QUERY(QUERY('Sheet 2'!A:A, 
 "select A,count(A) 
  where A is not null 
  group by A 
  label count(A)''", 0), 
 "where Col2 >= 2", 0)

【讨论】:

  • 完美,我永远也想不到!非常感谢@player0!
猜你喜欢
  • 2021-04-06
  • 1970-01-01
  • 1970-01-01
  • 2020-01-18
  • 1970-01-01
  • 1970-01-01
  • 2019-02-06
  • 2020-06-12
  • 1970-01-01
相关资源
最近更新 更多