Agree that calculations are often best not stored. Mainly, if a value used in the calculation is likely to change, the calculation or perhaps associated values, becomes "wrong". Not sure, but in your case, that may not be happening. You be the judge.
Basically, you have 2 options. A series of If statements or a Select Case block. For the first, you'd use
Code:
If condition 1 Then
do A
ElseIf condition 2 Then
do B
ElseIf condtion 3 Then
do C
...
Else
Do whatever's left to be done
End If
While that is often sufficient, sometimes a Select Case is better or at least more concise
Code:
Select Case Something
Case 1
do A
Case 2
do B
Case 3,4,7
do C
Case Else
do whatever's left
End Select
The case block handles multiple choice neatly (as in 3,4,7) as well as comparison operators (>,= etc) although the syntax is slightly different. Not sure if there's a compelling reason for either approach.