I am trying to take a value from one cell, check if it matches a case, and then move down to the next cell to check it again. I can't get my code to work. I am very new to VBA so any help would be greatly appreciated!
Sub Grade_Convert()
Sheets(2).Select
grade = Range("A3").Select
Do
grade = ActiveCell.Value
Select Case grade
Case Is <= 49
g = "F"
Case Is <= 59
g = "E"
Case Is <= 69
g = "D"
Case Is <= 79
g = "C"
Case Is <= 89
g = "B"
Case Is <= 100
g = "A"
End Select
ActiveCell.Offset(0, 1).Select
ActiveCell.Value = g
ActiveCell.Offset(-1, -1).Select
If (IsEmpty(ActiveCell)) = True Then Exit Do
Loop
End Sub```