确定 Google 工作表中每年的术语数

Determine the number of terms by year in Google Sheets

我的 Google 表格文件中有两个选项卡。 这些选项卡之一包含我们客人的数据。

另一种是按年份的付款方式汇总。

你能解释一下吗,我怎样才能用其他选项卡中的数据填写摘要单元格?

谢谢!

尝试:

=QUERY({Adatok!A2:E}; 
 "select Col5,count(Col2) 
  where Col5 is not null 
  group by Col5 
  pivot year(Col4)
  label Col5'Payment method'")

在单元格 B3 中使用此公式并扩展到其他单元格:

=count(filter(Adatok!$C:$C;year(Adatok!$D:$D)=B;Adatok!$E:$E=$A3))