Search here for all the info you want in this Blog

If .. Then


If..Then

it executes a set of statements when a condition is true


Syntax:

If{condition}Then
    {statements}
End
If

Example:

x = 10
y = 5

if x>y then
msgbox("x is greater")
end if

No comments:

Post a Comment