Think about the decision to be made:
If you have more than 3 possible outcomes you might consider using the Select Case construct, otherwise use If…Then.
answer="yes" AND score>10
answer="yes" OR score>10
NOT(answer="yes")
If username=“Jeeves” Or username=“Wooster” Then Else If username = “Brinkley” Then Else End If
Select Case username Case “Jeeves”, “Wooster” Case “Brinkley” Case Else End Select
Back to index
mph@ghscomputing.co.uk