Grade calculation

Grade calculation

This is the norm for the grades obtained in each course, taking into account the course credits. Assessment frameworks vary in many countries or even in schools. This calculator recognizes letter grades as well as numeric inputs. These letter grades are deciphered into numerical values as shown below.
A+ = 4.3 grade points
A = 4 grade points
A- = 3.7 grade points
B+ = 3.3 grade points
B = 3 grade points
B- = 2.7 grade points
C+ = 2.3 grade points
C = 2 grade points
C- = 1.7 grade points
D+ = 1.3 grade points
D = 1 grade point
D- = 0.7 grade points
F = 0 grade points

How to Calculate Grade using VBA Procedure in excel


calculate grade using vba in excel

To calculate grade using vba in excel We need to calculate Grade with college students examination numbers and We have an excel sheet. if you havnt prepare excel sheet with students numbers then prepare it first


calculate gpa and grade

Microsoft VisualBasic Applications

By opening the Microsoft VisualBasic Applications window you can access the VisualBasic (VBA) environment in Excel 2007-2013

To begin with, ensure that the VBA DEVELOPER tab is seen withinside the toolbar in Excel 2007. .

The DEVELOPER tab is the toolbar that has the buttons to open the VisualBasic (VBA) editor.
To display the Developer tab, click on on FILE withinside the menu and pick out Options beginning from the drop menu.


At the factor the Excel Options window indicates up, click on, after that click on at the Customize Ribbon at the left.


Under the list of Customize Ribbon Main Tabs on the right, Select VBA Developer checkbox . Then click on the OK button.



Now from the toolbar Select the VBA DEVELOPER tab at the top of the screen. Then in the Code group, click on the VisualBasic option.


Presently the Microsoft VisualBasic VBA for Applications editor ought to seem and also you insert your VisualBasic VBA code.

From menu pick insert button then click on Module.



The Applications editor of Visual Basic ought to to expose up then insert function Grade.


Function grad(alpha As Double)
If alpha = 4 Then
grad = "A+"
ElseIf alpha < 4 And alpha >= 3.4 Then
grad = "A"
ElseIf alpha < 3.4 And alpha >= 3.1 Then
grad = "B+"
ElseIf alpha < 3.1 And alpha >= 2.8 Then
grad = "B"
ElseIf alpha < 2.8 And alpha >= 2.4 Then
grad = "B-"
ElseIf alpha < 2.4 And alpha >= 2.1 Then
grad = "C+"
ElseIf alpha < 2.1 And alpha >= 1.8 Then
grad = "C"
ElseIf alpha < 1.8 And alpha >= 1.5 Then
grad = "C-"
ElseIf alpha < 1.5 And alpha >= 1 Then
grad = "D"
End If

End Function

After entereing the code then write procedure name called Grade then click save button and then close visualbasic editor.



Now in cell O5 write formulation for N5, to calculate GPA open the following link. How to calculate GPA
after that in cell P5 enter formula (= gpa(N5)) to calculate grade.



Excel automated calculates the grade for given Student marks.


copy this formula for other marks cell O5, and past it bellow in cells O6 to O11


its all.

GPA calculation

Grade Calculation in excel

No comments:

Post a Comment