0

我有一个 3 张工作表的 excel 工作簿:

表 1 和表 2

Columns A-G have text entered into them
Column H is a selection of either 1,2, 3 or H from a drop down list
Column I has numeric (currency) value entered into it (called year 1)
Column J has numeric (currency) value entered into it (called year 2)
Column K has numeric (currency) value entered into it (called year 3)
Column L has numeric (currency) value entered into it (called year 4)
Column M has numeric (currency) value entered into it (called year 5)
Column N has numeric (currency) value entered into it (called years 6-10)

表 3 包含一个表格。

我需要一个公式来提取数字并传输并将它们添加到表 3 中。

因此,如果 H 列读取数字 1,则我需要知道第 1 年(第 I 列)的总数以转移到第 3 页上的单元格中,然后如果 H 列读取第 1 年(第 I 列)的总数,则进入另一个单元格2号等。

有任何想法吗?

4

1 回答 1

2

这可能适合:

=SUMIF(Sheet1!H:H,1,Sheet1!I:I)+SUMIF(Sheet2!H:H,1,Sheet2!I:I)

编辑- 对于其他单元格(!):

=SUMIF(Sheet1!H:H,2,Sheet1!I:I)+SUMIF(Sheet2!H:H,2,Sheet2!I:I)

将 Sheet1 和 Sheet2 中 ColumnI 中行值总和的总和相加,其中 ColumnH 包含相应行中的标准(一个单元格为 1,另一个单元格为 2)。

=苏米夫

于 2013-08-02T10:49:45.610 回答