多个条件和工作表的Excel公式

时间:2015-11-30 08:32:13

标签: excel conditional-statements

目标

我尝试创建一个公式,该公式将允许来自90个不同工作表的特定信息,下面是一个这样的工作表的示例。每个工作表代表参与者的数据。

enter image description here

我希望将90张工作表中的数据汇总到下面的工作表中。 enter image description here

问题

问题是我需要创建一个考虑counterbalancing的公式。

因此,在第二张图像的单元格A3中,我将记录值1和3出现在第一张图像的第I列中的次数。

条件

但是,我只想在第I列中的数字计算:

a)在图像1的列M中,值为1

b)列L 中的数字为1且列K 为1或4 OR 列中的数字L 为2,列K 中的数字为3或4。

我的尝试

= SUM(' [All_memories_301-389_improved.xlsx] Sirma 301:387Yanxin'!$ M $ 2,1 *(IF(' [All_memories_301-389_improved.xlsx] Sirma 301:387Yanxin&# 39;!$ L $ 2,1 *(IF(' [All_memories_301-389_improved.xlsx] Sirma 301:387Yanxin'!$ K $ 2:$ K $ 41,1,4 *(IF(' [All_memories_301-389_improved.xlsx] Sirma 301:387Yanxin'!$ I $ 2:$ I $ 54,1,3)))))))

然而,这并没有奏效,我花了很长时间在这上面并进行了修改,但我仍然无法让它发挥作用。

额外信息:

在第一列中,我希望在满足指定条件的情况下计算所有出现的1和3。这些行并不重要,而是90个电子表格中每个电子表格的第I列信息。

使用公式的新尝试:

= COUNTIFS(' [All_memories_301-389_improved.xlsx] 381Christie'!$ M $ 2,1,' [All_memories_301-389_improved.xlsx] 381Christie'!$ L $ 2,1, ' [All_memories_301-389_improved.xlsx] 381Christie'!$ K $ 2:$ K $ 23,AND(1,4),' [All_memories_301-389_improved.xlsx] 381Christie'!$ I $ 2 :$ I $ 23,AND(1,3))

0 个答案:

没有答案