如何在使用ArrayFormula进行筛选数据时使用Subtotal

huangapple go评论66阅读模式
英文:

How to use Subtotal in a Filter Data with ArrayFormula

问题

I've created a simple table and trying to sequence datas with Subtotal (CountA) in my Filter Datas.

A: 使用 ArrayFormula 进行的小计

B: 不使用 ArrayFormula 进行的小计

Here is my exp:
https://docs.google.com/spreadsheets/d/1SOiu0YHFLZB50d7h7gWQeobxKBto_n3llm-Ej1MazWU/edit?usp=sharing

英文:

I've created a simple table and trying to sequence datas with Subtotal (CountA) in my Filter Datas.

Datas

A: Subtotal with ArrayFormula

B: Subtotal without ArrayFormula

Here is my exp:
https://docs.google.com/spreadsheets/d/1SOiu0YHFLZB50d7h7gWQeobxKBto_n3llm-Ej1MazWU/edit?usp=sharing

答案1

得分: 0

Use MAP()然后在其内部使用SUBTOTAL()

=MAP(E2:INDEX(E2:E,COUNTA(E2:E)),LAMBDA(x,SUBTOTAL(3,E2:INDEX(E2:E,ROW(x)-1))))

英文:

Use MAP() then SUBTOTAL() inside it.

=MAP(E2:INDEX(E2:E,COUNTA(E2:E)),LAMBDA(x,SUBTOTAL(3,E2:INDEX(E2:E,ROW(x)-1))))

如何在使用ArrayFormula进行筛选数据时使用Subtotal

huangapple
  • 本文由 发表于 2023年4月20日 08:26:51
  • 转载请务必保留本文链接:https://go.coder-hub.com/76059723.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定