A simple decision-making structure in a subroutine : IF « Language Basics « VBA / Excel / Access / Word






A simple decision-making structure in a subroutine

 

=     Is equal to
<>     Is not equal to
>     Is greater than
<     Is less than
>=     Is greater than or equal to
<=     Is less than or equal to


Sub ifTest()
    Dim intNum As Integer
    Dim strMessage As String

    intNum = 12

    If intNum > 10 Then
        strMessage = "The number is " & intNum
    End If

    Debug.Print strMessage

End Sub

 








Related examples in the same category

1.Within an If structure, you can have an alternative path by using an Else statement.
2.Use and in if statement
3.Block If Statements
4.One-Line If Statements
5.If... Then... ElseIf... Else Statements
6.An If... Then... ElseIf Statement without an Else Clause
7.Combine several If structures using ElseIf.
8.Using the If...Then Statement
9.Write If Then statement in one line
10.Using the Multi-Line If...Then Statement
11.Decisions Based on More Than One Condition: Using the If..Then...AND Conditional Statement
12.Using If...Then...Else Conditional Statement
13.If...Then...ElseIf Statement
14.If statement ladder
15.Nest if statement in a Do Loop
16.Nest an if statement with Do While
17.If/Then/Else: guess a number