Practical: Create a Student Marksheet in MS Excel

Create a Student Marksheet in MS Excel

Objective

To create a marksheet that automatically calculates total marks, percentage, grade, and pass/fail result.

Steps

  1. Open Microsoft Excel and select Blank Workbook.
  2. Merge cells A1:K1, type STUDENT MARKSHEET, and make it bold and centred.
  3. In row 3, enter these headings:
ColumnHeading
ARoll No.
BStudent Name
CEnglish
DMathematics
EScience
FComputer
GUrdu
HTotal
IPercentage
JGrade
KResult
  1. Enter students’ names and marks from row 4. Assume every subject carries 100 marks, so the total is 500.
  2. In cell H4, calculate total marks:
=SUM(C4:G4)
  1. In cell I4, calculate the percentage:
=H4/500*100
  1. In cell J4, calculate the grade:
=IF(I4>=80,"A+",IF(I4>=70,"A",IF(I4>=60,"B",IF(I4>=50,"C",IF(I4>=40,"D","F")))))
  1. In cell K4, calculate the result. A student must obtain at least 40 marks in every subject:
=IF(MIN(C4:G4)>=40,"Pass","Fail")
  1. Select cells H4:K4 and drag the fill handle downward to apply the formulas to all students.
  2. Format the marksheet:
  • Make headings bold.
  • Apply borders to the table.
  • Centre the marks and results.
  • Show the percentage with two decimal places.
  • Use green for Pass and red for Fail.
  1. Check the formulas and save the workbook as:

Student_Marksheet.xlsx

Result

A student marksheet is created that automatically displays total marks, percentage, grade, and pass/fail result.

Scroll to Top