我们经常需要在EXCEL中进行成绩计算,有时候需要将未参加考试的学生在结果中显示为“未考试”。这时候可以使用IF函数和ISBLANK函数的组合来实现。
首先,假设成绩数据存储在A列,从A2开始。我们可以在B列使用IF函数来判断每个学生的考试情况:
=IF(ISBLANK(A2), "未考试", A2)
上述公式的意思是,如果A2单元格为空,则显示“未考试”,否则显示A2的值。通过拖动填充手柄,可以将该公式应用到其他单元格。
接下来,我们需要计算总成绩。假设每门功课的成绩存储在C列至G列,我们可以在H列使用SUM函数来计算每个学生的总成绩:
=SUM(C2:G2)
最后,我们将上述公式与IF函数和ISBLANK函数的组合使用,来在总成绩中显示未考试的学生:
=IF(ISBLANK(A2), "未考试", SUM(C2:G2))
通过拖动填充手柄,可以将该公式应用到其他单元格,最终得到每个学生的总成绩,并且未参加考试的学生显示为“未考试”。
This article is written by wikishu, and the copyright belongs to ©Wikishu. 【Unauthorized reprinting is prohibited.】
If you need to reprint, please indicate the source and contact wikishu or visit Wikishu(https://wikishu.com) to obtain authorization. Any unauthorized use of the content of this article will be considered an infringement.
Original source: https://wikishu.com/?p=105441