Count checked checkboxes within a query

試著忘記壹切 提交于 2020-01-24 21:25:07

问题


How do I count checked checkboxes within a query in Google sheets (this is part of a group query where I want to count checked checkboxes in column B for each value of column A grouped by column A)?


回答1:


try:

=ARRAYFORMULA(QUERY({A:A\ B:B*1}; 
 "select Col1,sum(Col2) 
  where Col1 is not null 
  group by Col1 
  label sum(Col2)''"))



来源:https://stackoverflow.com/questions/59751416/count-checked-checkboxes-within-a-query

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!