Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »

Overview

Returns arg1 if the given condition is true; otherwise, arg2.

any iif(condition, arg1, arg2)


Arguments

any condition

Condition to be evaluated.
any arg1

Expression to return if the condition is to true.


any arg2

Expression to return if the condition is false.

Return Value

Given arg1 or arg2 parameter.

Remarks


Examples

iif(a = 1, b, c)


See Also


  • No labels