Excel Formula to calculate GPA

wngadea

New Member
Joined
Jan 28, 2014
Messages
11
This is what my row looks like I want to add a column at the end that calculate GPA (Letter Value/Number of classes)..
Could someone please help me?? I try the "IF" formula but is not working :confused:

<style>table { }td { padding-top: 1px; padding-right: 1px; padding-left: 1px; color: windowtext; font-size: 10pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Arial; vertical-align: bottom; border: medium none; white-space: nowrap; }.xl58 { text-align: center; }</style>
Student IDLast NameFirst NameHist %MarkPrblm Solv %MarkPE %MarkWriting %MarkReading %Mark
0000000
None
None
69.6NY65.7NY95A59.8NY79.7C+
0000000
None
None
62.2NY65.7NY86.1B79.6C+59.3NY
0000000
None
None
61NY75.4C89B+66.7NY66.9NY
0000000
None
None
82.3B-79.6C+84.3B67.5NY85.1B
0000000
None
None
71.3C-75.4C89B+66.7NY66.9NY
0000000
None
None
67.8NY65.4NY83.3B71.5C-71.8C-
0000000
None
None
78C+76.3C79.9C+85.2B75.5C
0000000
None
None
75.5C69.9NY92.7A-82.3B-79.9C+

<colgroup><col style="width:65pt" span="13" width="65"> </colgroup><tbody>
</tbody>

A =4
A- =3.7
B+ =3.3
B =3
B- =2.7
C+ =2.3
C =2
C- =1.7
NY =0
 
Last edited:

Excel Facts

Formula for Yesterday
Name Manager, New Name. Yesterday =TODAY()-1. OK. Then, use =YESTERDAY in any cell. Tomorrow could be =TODAY()+1.
You can use the formula to convert the letter grade to your grade scale in the appropriate column:

=IFERROR(CHOOSE(MATCH(M2,{"A","A-","B+","B","B-","C+","C","C-"},0),4,3.7,3.3,3,2.7,2.3,2,1.7),0)
 
Upvote 0
In your new column at the end, you can use this formula:

=SUM(IFERROR(CHOOSE(MATCH(E2,{"A","A-","B+","B","B-","C+","C","C-"},0),4,3.7,3.3,3,2.7,2.3,2,1.7),0),IFERROR(CHOOSE(MATCH(G2,{"A","A-","B+","B","B-","C+","C","C-"},0),4,3.7,3.3,3,2.7,2.3,2,1.7),0),IFERROR(CHOOSE(MATCH(I2,{"A","A-","B+","B","B-","C+","C","C-"},0),4,3.7,3.3,3,2.7,2.3,2,1.7),0),IFERROR(CHOOSE(MATCH(K2,{"A","A-","B+","B","B-","C+","C","C-"},0),4,3.7,3.3,3,2.7,2.3,2,1.7),0),IFERROR(CHOOSE(MATCH(M2,{"A","A-","B+","B","B-","C+","C","C-"},0),4,3.7,3.3,3,2.7,2.3,2,1.7),0))/(5-COUNTIF(E2:G2:I2:K2:M2,"ny"))

Using your chart above, this will use 5 columns: E, G, I, K, M. It will calculate the GPA based on valid Letter Grades.
 
Upvote 0
Would the GPA's for the eight students be thus:

NY
NY
NY
C
NY
NY
C+
C

Per your example?

Howard
 
Upvote 0

Forum statistics

Threads
1,215,237
Messages
6,123,800
Members
449,127
Latest member
Cyko

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top