IIf Function |
IIf(condexpr, TruePart, FalsePart)
Returns the value of the parameter indicated by condexpr. Both TruePart and FalsePart are evaluated.
Parameter |
Description |
If this value is True then return TruePart. Otherwise, return FalsePart. |
|
Sub Main
Debug.Print IIf(1 > 0,"True","False") '"True"
End Sub