mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
16 lines
579 B
Plaintext
16 lines
579 B
Plaintext
<h3>if function</h3>
|
|
Tests a condition and returns a different result depending on the conditional
|
|
check.
|
|
|
|
<h4>Syntax</h4>
|
|
<pre>IF (condition, result_when_true, result_when_false)</pre>
|
|
|
|
<h4>Arguments</h4>
|
|
condition → The condition which should be checked.
|
|
result_when_true → The result which will be returned when the condition is True.
|
|
result_when_false → The result which will be returned when the condition is False.
|
|
|
|
<h4>Example</h4>
|
|
<pre> IF( 1, 'One', 'Not One' ) → returns 'One' </pre>
|
|
<pre> IF( 8, 'One', 'Not One' ) → returns 'Not One' </pre>
|