Open topic with navigation
Defines a conditional expression and the expressions to run depending on the outcome of the conditional expression.
IIF(ConditionalExpr, ExprIfTrue, ExprIfFalse)
接続先:
ConditionalExpr is an expression that evaluates to True or False.
ExprIfTrue is an expression that is to be run if CondiionalExpr evaluates to True.
ExprIfFalse is an expression that is to be run if CondiionalExpr evaluates to False.
Only one of the two expressions (ExprIfTrue or ExprIfFalse) are run each time the IIF function runs.追加の (入れ子) IIF 関数も含め、これらの表現は、有効な単一行表現となります。
For more information about the IIF function, refer to Using the In-line If (IIF) Function.
関連トピック