Syntax for if...then...else statement.
Answers
Answered by
7
Answer:
Multiline syntax
When an If ... Then ... Else statement is encountered, condition is tested. If condition is True , the statements following Then are executed. If condition is False , each ElseIf statement (if there are any) is evaluated in order.
Similar questions