Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Sub LiveDemo()
- Dim num As Integer
- num = 250
- If num < 100 Then
- Debug.Print "Less than 100"
- ElseIf num <= 200 Then
- Debug.Print "Between 100 and 200"
- ElseIf num > 200 Then
- Debug.Print "Greater than 200"
- End If
- End Sub
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement