Condition-Funktionen
-
{if}
: Checks if the value is not empty and notfalse
(use{compare}
for comparing) and returns the text depending on that- Argumente:
- value
- ifTrue = "✅"
- ifFalse = ""
- Beispielergebnis:
test
- Mit Eingabe:
{if;test;test}
- Mit Eingabe:
{if;;fail;test}
- Mit Eingabe:
- Argumente:
-
{compare}
: Compares two values with each other and returns the text depending on the result- Argumente:
- value1
- operator
- value2
- ifTrue = "✅"
- ifFalse = ""
- Beispielergebnis:
test
- Mit Eingabe:
{compare;a;==;a;test}
- Mit Eingabe:
{compare;a;!==;b;test}
- Mit Eingabe:
{compare;a;!=;a;fail;test}
- Mit Eingabe:
{compare;1;>;2;fail;test}
- Mit Eingabe:
{compare;1;<;2;test}
- Mit Eingabe:
{compare;1;>=;1;test}
- Mit Eingabe:
{compare;1;<=;1;test}
- Mit Eingabe:
- Argumente: