在Google表格中添加丢失的数据

时间:2019-06-25 09:55:12

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

我有一个“销售”表来记录每月销售的所有产品。

             Products     Price   Qty sold
Jan 2019     ProductA     $50     4
Jan 2019     ProductA     $45     1      << discounted sale
Jan 2019     ProductB     $50     5
Fed 2019     ProductA     $50     1
Mar 2019     ProductB     $50     2

某些商品可能以不同的价格出售,并且在一个月内被列出多次。

我还有第二张纸可以帮助我在图表上直观地查看每个产品每月的销售额。 此查询我的“销售”表,并向我显示在单元格A2中输入的产品的所有数据。

=Query(Sales!A1:I, "select * where (A contains '"&A2&"')", 1)

由于某些产品每月都不销售,因此图表缺少此数据。 因此,如果我在A2中输入“ ProductA”,则会得到:

             Products     Price   Qty sold
Jan 2019     ProductA     $50     4
Jan 2019     ProductA     $45     1
Fed 2019     ProductA     $50     1

是否可以调整以上查询以添加缺少的行并获取:

             Products     Price   Qty sold
Jan 2019     ProductA     $50     4
Jan 2019     ProductA     $45     1
Fed 2019     ProductA     $50     1
Mar 2019     ProductA     $50     0    << new row added with 0 sales
Apr 2019     ProductA     $50     0    << new row added with 0 sales
...
...

0 个答案:

没有答案