谷歌表处理多元素单元格

时间:2021-02-27 15:38:23

标签: google-sheets spreadsheet

我有一张这种结构的工作表

Column_A       Column_B
str_1            value_1
str_2            value_2
str_3 str_4      value_3
str_1 str_2      value_4
...

我想创建一个新工作表:

Column_C       Column_D
str_1          sum(value in column_B where str_1 in column_A)
str_2          sum(value in column_B where str_2 in column_A)
str_3          sum(value in column_B where str_3 in column_A)
str_4          sum(value in column_B where str_4 in column_A)
...

关于如何处理我的 A 列和 B 列以到达 C 和 D 的任何想法?

谢谢

0 个答案:

没有答案