You need to define your 4 conditions e.g. RigSize = "Small" or "Medium" etc then use one of these :
a)
Code:
If Condition1 Then
'condition1 code here...
ElseIf Condtion2 Then
'condition2 code here...
ElseIf Condtion3 Then
'condition3 code here...
Else
'condition4 code here...
End If
OR use Select Case which is neater & may run slightly faster
Code:
Dim intCondition As Integer
Select Case intCondition
Case 1
'condition1 code here...
Case 2
'condition2 code here...
Case 3
'condition3 code here...
Case 4
'condition4 code here...
End Select