How do you explain if/then else?

Use the If… Then… Else statement to define two blocks of statements. One of the statements runs when the specified condition is True, and the other one runs when the condition is False . When you want to define more than two blocks of statements, use the ElseIf Statement.

Read more