After entering an "A" worthy grade the case select is still returning an "F". I know it's simple but what's wrong here?
'perform calculations
totalTest = (testScore1 + testScore2 + testScore3) / 3 * testWeight
totalLab = (labScore1 + labScore2 + labScore3 + labScore4 + labScore5) / 5 * labWeight
totalQuiz = (quizScore1 + quizScore2 + quizScore3 + quizScore4) / 4 * quizWeight
totalFinal = finalScore * finalWeight
totalGrades = totalTest + totalLab + totalQuiz + totalFinal
Select Case grade
Case 90 To 100
letterGradeLabel.Text = "A"
Case 80 To 89.99
letterGradeLabel.Text = "B"
Case 70 To 79.99
letterGradeLabel.Text = "C"
Case 60 To 69.99
letterGradeLabel.Text = "D"
Case Else
letterGradeLabel.Text = "F"
End Select
'display average and letter grade
finalGradeLabel.Text = totalGrades.ToString