获取工作表上所有找到的值附近(右侧)的单元格总和

时间:2018-04-10 19:34:59

标签: google-sheets

enter image description here我有很多下拉列表(相同)。 我需要公式来获得位于所选下拉列表右侧的所有单元格的总和。 对于每个下拉值。

I.e.
Dropdown: 1/11 estel, 4/6 estel, 5/00 estel.
I select the 1/11 estel in 3 dd's on the sheet, 4/6 and 5/00 - 1 times.
I need:
Sum of all cells right of '1/11 estel' values selected.
e.t.c

1 个答案:

答案 0 :(得分:1)

假设下面的表格是A1:F20, enter image description here

=SUMPRODUCT(IF(A1:F20=A1,B1:G20))
  • 如果要将数组右移一列并应用约束条件
  • SUMPRODUCT总结得到的数组