excel中的条件平均值

时间:2016-10-14 04:31:58

标签: excel average

我有一张excel表,其中列为:

% of contract value = c(4,3,5,6)

contract type = c("sell", "sell", "sell", "buy")

confidence = c(5, 3, 3, 3)

我想做一个有条件的平均值如下:

% of contract value的平均值,但仅适用于contract type = "sell"confidence = 3的行。

换句话说,答案应该是(3 + 5)/2 = 4

在excel ????

中有一种简单的方法吗?

1 个答案:

答案 0 :(得分:1)

如果这是在Excel工作表中,c(bla,bla,bla)表示法的目的是什么?如果您的数据安排在表格中,那么您可以轻松使用AverageIfs函数。

= AVERAGEIFS(B2:B5,C2:C5, “卖”,D2:D5,3)

enter image description here