From 940b4d1848e8c70ab7642901a68594e8016caffc Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 27 Apr 2024 18:51:28 +0200 Subject: Adding upstream version 1:7.0.4. Signed-off-by: Daniel Baumann --- .../source/text/sbasic/shared/03090103.xhp | 51 ++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 helpcontent2/source/text/sbasic/shared/03090103.xhp (limited to 'helpcontent2/source/text/sbasic/shared/03090103.xhp') diff --git a/helpcontent2/source/text/sbasic/shared/03090103.xhp b/helpcontent2/source/text/sbasic/shared/03090103.xhp new file mode 100644 index 000000000..8b53d87dd --- /dev/null +++ b/helpcontent2/source/text/sbasic/shared/03090103.xhp @@ -0,0 +1,51 @@ + + + + + + + +IIf Statement +/text/sbasic/shared/03090103.xhp + + +Sun Microsystems, Inc. + + + +
+IIf statement + +IIf Statement +Returns one of two possible function results, depending on the logical value of the evaluated expression. +
+Syntax: + +IIf (Expression, ExpressionTrue, ExpressionFalse) + +Parameters: + +Expression: Any expression that you want to evaluate. If the expression evaluates to True, the function returns the result of ExpressionTrue, otherwise it returns the result of ExpressionFalse. + +ExpressionTrue, ExpressionFalse: Any expression, one of which will be returned as the function result, depending on the logical evaluation. + + + +
+ -- cgit v1.2.3