hello i have been told that there is a different method of writing this, such as using if, then , else, i have tried it and am getting all sort, do i need to use, if else then, or if else, condition to get the same result, i don't want to use case, is there another method, if so can you please tell me or better still write it for me
Public Function NOTCH(test2 As Integer, ByVal offset As Integer) As Boolean
Dim NotchCharacter As Integer
NotchCharacter = offset + 1
Select Case test2
Case 1
If NotchCharacter = 17 Then
NOTCH = True 'I=Q
End If
Case 2
If NotchCharacter = 5 Then
NOTCH = True 'II=E
End If
Case 3
If NotchCharacter = 22 Then
NOTCH = True 'III=V
End If
End Select
End Function