从其他选项卡中获取相关数据作为数组在其他选项卡中进行汇总

Get related data from other tab as an array for summary in other tab

想象一下有以下选项卡。我想在每个键(示例中的房间名称)的第二个选项卡中总结(假设平均)。

如何才能只获取按键匹配的值? VLOOKUP 仅找到一个条目。

尝试:

=QUERY({A:B}; 
 "select Col1,avg(Col2) 
  where Col2 is not null 
  group by Col1 
  label avg(Col2)''")

更新:

=QUERY({A:B};   
 "select Col1,avg(Col2)    
  where Col1 ='"&'2nd tab'!B1&"'    
  group by Col1    
  label avg(Col2)''")