Who says I'm not already doing extensive testing
Select Case score
    Case Is >= 80
        Msgbox "No problem..."
        Msgbox "using more than"
        Msgbox "just 1 line of code"

        result = "Hmmm"
    Case Is >= 70
        result = "good"
    Case Is >= 60
        result = "sufficient"
    Case Else
        result = "insufficient"
End Select