Code:
For k = 3 To UBound(cGrades)
If LenB(cGrades(k)) Then
If grade = cGrades(k) Then
cTally(i, k) = cTally(i, k) + 1
found = True
Exit For
End If
End If
Next k
I have tried to use Large function but not successful, should be easy but I may have over complicated it to myself.
How do you approach the problem?