A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
A practical Excel setup is:
- Column A: Course name
- Column B: Grade or grade points
- Column C: Credit hours
- Column D: Quality points for each course
Use Excel formulas to calculate totals and averages.
- Enter the course data.
- Put each course on its own row.
- Enter the credit hours in column C.
- Enter either the numeric grade points directly in column B, or convert letter grades to points based on the school’s grading scale.
- Calculate quality points for each course.
- In D2, enter a formula such as:
=B2*C2 - Press Enter.
- Drag the fill handle down to copy the formula to the other rows.
- In D2, enter a formula such as:
- Calculate total credit hours.
- In an empty cell, use:
=SUM(C2:C10)
- In an empty cell, use:
- Calculate total quality points.
- In another empty cell, use:
=SUM(D2:D10)
- In another empty cell, use:
- Calculate GPA.
- Divide total quality points by total credit hours:
=SUM(D2:D10)/SUM(C2:C10) - This follows the same Excel formula pattern of starting with
=and combining cell references and operators.
- Divide total quality points by total credit hours:
- Calculate CGPA.
- If all semesters are listed in one table, CGPA is calculated the same way:
=SUM(D2:D50)/SUM(C2:C50) - If each semester is separate, total all credit hours and total all quality points across semesters, then divide.
- If all semesters are listed in one table, CGPA is calculated the same way:
If the school uses a weighted system, the calculation is a weighted average. Excel supports averages and formula-based calculations, and parentheses can be used when needed to control calculation order.
If letter grades must be converted to points first, create a small grading scale table in another area of the sheet and return the numeric score for each grade before multiplying by credits. The exact point values depend on the institution’s grading scale, so that mapping must match the school’s rules.
For a simple average of numeric values, Excel also provides AutoSum > Average on the Formulas tab, but GPA/CGPA should be calculated from total weighted points divided by total credits, not by averaging course GPAs directly unless all courses have the same credit value.