Excel分数计算

时间:2014-06-17 03:04:00

标签: excel-formula

我有一个包含3列的Excel工作表,用于跟踪某人在我的考试中每个问题的分数,例如:

WEIGHT GRADE TEST
50     PASS  Do the first thing right
25     PASS  Do the second thing right
25     FAIL  Do the third thing right

我想通过执行以下操作自动确定SCORE:

SCORE = SCORE + (if B2 == PASS then A2, else 0) + (if B3 == PASS then A3, else 0)

因此,在上述案例中,学生的得分为75%(50 + 25 + 0)。我和很多学生有很多这样的考试,我只想粘贴在GRADE专栏中,并在单元格C1中获得最终的%结果。

我怎样才能在excel中编写这样的公式?

谢谢,

1 个答案:

答案 0 :(得分:1)

C1

中尝试此操作

=SUM(IF(B$2:B$4="PASS",A$2:A$4,0))

Ctrl + Shift + 输入作为数组公式输入。

我应该在公式栏中看起来像这样:(带花括号)

enter image description here