DEV Community

James Andrais
James Andrais

Posted on

How to Make Marksheet In Excel

Creating a marksheet in Excel is relatively straightforward. You can follow these steps:

  1. Open Excel: Open Microsoft Excel on your computer.
  2. Set up Columns: You'll typically have columns for student names, roll numbers, and marks obtained in different subjects. You can customize this based on your specific requirements. For example, you might have columns like: • Student Name • Roll Number • Subject 1 Marks • Subject 2 Marks • ... • Total Marks • Percentage • Grade
  3. Enter Data: Enter the names of students, their roll numbers, and the marks obtained in each subject in the corresponding cells.
  4. Calculate Total Marks: In the Total Marks column, use a formula to sum up the marks obtained in all subjects for each student. For example, if your subjects' marks are in columns B to E, and the total marks column is F, you can use the formula =SUM(B2:E2) in cell F2 and drag it down to apply to all students.
  5. Calculate Percentage: In the Percentage column, use a formula to calculate the percentage obtained by each student. For example, if the total marks are in column F and you want the percentage in column G, you can use the formula =(F2/TotalMarks)*100 in cell G2 (assuming 'TotalMarks' refers to the total marks obtained by each student).
  6. Assign Grades: Depending on your grading system, you can set up criteria for different grades. For example, if you have a grading system where 90% or above is an A, 80-89% is a B, and so on, you can use nested IF statements or VLOOKUP to assign grades based on the percentage obtained. For More Info Watch This Full Video: How to Make Marksheet In Excel
  7. Formatting: Format your marksheet to make it visually appealing and easier to read. You can add borders, apply cell colors, use bold fonts for headings, etc.
  8. Review and Finalize: Once you have set up your marksheet, review it to ensure accuracy. Check all formulas, especially if you have dragged them across multiple cells.
  9. Print or Share: Once satisfied with your marksheet, you can print it out or share it digitally with others. Remember, Excel provides a wide range of functionalities for data manipulation and analysis. You can customize your marksheet based on your specific needs and preferences using various Excel functions and features.

Top comments (0)