Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
16
Task/Conditional-structures/VBA/conditional-structures-2.vba
Normal file
16
Task/Conditional-structures/VBA/conditional-structures-2.vba
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
Sub C_S_ElseIf()
|
||||
Dim A$, B$
|
||||
|
||||
A = "Hello"
|
||||
B = "World"
|
||||
'test
|
||||
If A = B Then Debug.Print A & " = " & B
|
||||
'other syntax
|
||||
If A = B Then
|
||||
Debug.Print A & " = " & B
|
||||
ElseIf A > B Then
|
||||
Debug.Print A & " > " & B
|
||||
Else
|
||||
Debug.Print A & " < " & B
|
||||
End If
|
||||
End Sub
|
||||
Loading…
Add table
Add a link
Reference in a new issue