通过与列比较来过滤Google表格的数据透视表

时间:2019-02-26 08:06:11

标签: filter google-sheets pivot

我要在以下设置中过滤数据透视表:

我的桌子:

Key Value1  Value2
1   23      a
2   33      b
3   1       c
4   5       d

我的数据透视表(简体):

Key SUM of Value1   COUNTA of Value2
1   23              1
2   33              1
3   1               1
4   5               1
Grand Total 62      4

我现在想通过此列表中的值过滤数据透视表:

Keys
1
2
4

因此,生成的数据透视表应如下所示:

Key SUM of Value1   COUNTA of Value2
1   23              1
2   33              1
4   5               1
Grand Total 61      3

我认为应该可以通过在数据透视表过滤器中使用自定义公式来实现这一点,但是似乎我无法在数据透视表中使用当前单元格,例如进行查找。

我在此处创建了此设置的简单示例:https://docs.google.com/spreadsheets/d/1GlQDYtW8v8ri5L68RhryTZxwTikV_NXZQlccSI6_7pU/edit?usp=sharing

1 个答案:

答案 0 :(得分:0)

将此公式粘贴到过滤器!B1

=ARRAYFORMULA(IFERROR(VLOOKUP(A1:A, Table!A1:C, {2,3}, 0), ))

0

并从那里创建一个结果数据透视表:

demo spreadsheet