SUMIFS function in Google Spreadsheet

后端 未结 4 615
忘掉有多难
忘掉有多难 2020-11-30 06:42

I\'m trying to have a similar function to SUMIFS (like SUMIF but with more than a single criterion) in a Google Spreadshe

4条回答
  •  广开言路
    2020-11-30 07:32

    I found a faster function to fill up the "pivot table":

    =ARRAYFORMULA(SUM(((Sample!$A:$A)=$A2) * ((Sample!$B:$B)=B$1) * (Sample!$C:$C) ))
    

    It seems to run much faster without the heavier String and Query functions.

提交回复
热议问题