如何计算基于相邻单元格的文本字符串?

时间:2019-04-17 17:17:46

标签: google-sheets google-sheets-formula

我在Google表格中有一个单元格网格:

A1在B1中显示产品代码“ ABC” 的数量,然后C1在D1中显示产品代码“ DEF” 的数量,然后在下一行用于下一位客户,依此类推。
我正在尝试使用某种COUNT公式在底部一次总结所有这方面的内容,但目前还无法弄清楚。

This is an image of one section of what I'm referring to

2 个答案:

答案 0 :(得分:0)

=QUERY({A:B;C:D}, 
 "select Col2, sum(Col1) 
  where Col1 is not null 
  group by Col2
  label sum(Col1)'Sumary', Col2'Item'")

0

答案 1 :(得分:0)

---
- name: copy files
  shell: "cat path{{ item }}files"
  register: checkempty
  loop:
    - test1
    - test2
    - test3
    - test4

0