9.0
If(condition > value, "True", "False")
We can use the If operator instead of If...Then...Else..End If statement blocks.
Consider the following example:
If 10 > 9 Then
MsgBox("True")
Else
MsgBox("False")
End If
is the same as
M...