0% found this document useful (0 votes)
2 views2 pages

Worksheet On Excel

This document outlines a worksheet designed for Class Six at Al Hidaayah International School to automate the calculation of students' grades, average scores, and pass/fail status using MS Excel. It details the structure of the worksheet, including columns for student names, subject marks, total marks, average marks, grades, and pass/fail status, along with the formulas used to assign grades and determine pass/fail status. The worksheet aims to reduce human error and ensure consistency in grading.

Uploaded by

afsanajahan2342
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views2 pages

Worksheet On Excel

This document outlines a worksheet designed for Class Six at Al Hidaayah International School to automate the calculation of students' grades, average scores, and pass/fail status using MS Excel. It details the structure of the worksheet, including columns for student names, subject marks, total marks, average marks, grades, and pass/fail status, along with the formulas used to assign grades and determine pass/fail status. The worksheet aims to reduce human error and ensure consistency in grading.

Uploaded by

afsanajahan2342
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

Al hidaayah International School

Worksheet on MS Excel
Class : Six
Name________________ Section_____

Info: This worksheet is designed to help automate the calculation of students' grades,
average scores, and their pass/fail status. It simplifies data entry, reducing human
error while ensuring consistency in grading.

Structure of the Excel Worksheet


Column Description

Student Name This column stores the names of the students.

Subject 1, 2, 3 These columns store the marks obtained by students in individual


subjects.

Total Marks This column calculates the sum of all subjects' marks for each student.

Average Marks This column calculates the average marks of all subjects for each
student.

Grade This column assigns a grade to the student based on their average
score.

Pass/ Fail This column determines if the student has passed or failed based on
their average score.
Assign a Grade

● Formula: =IF(C2>=90, "A*",IF(C2>=70, "A", IF(C2>=60, "B",IF(C2>=50,


"C",IF(C2<50, "F")))))

Theory: The IF function is a conditional statement that assigns a grade based on


the average score. This formula uses nested IF functions to handle multiple
conditions

 Determine Pass/Fail Status

Formula:
excel

=IF(C2>=50, "Pass", "Fail")

● Theory: This formula checks if the student’s average score is 50 or above. If so, it
outputs "Pass"; otherwise, it outputs "Fail". This is a simple binary check based on
a predefined passing threshold.

 Sample output:

You might also like