SILog map styles: Skillnad mellan sidversioner

Från DataPolarna
Hoppa till navigering Hoppa till sök
Ingen redigeringssammanfattning
Rad 1: Rad 1:
= Conditions =
= Functions =
= Functions =
== ANYOF ==
== ANYOF ==

Versionen från 22 oktober 2025 kl. 14.51

Conditions

Functions

ANYOF

COALESCE

Use the first value that isn't null.

Example

COALESCE(product.name, storageArea.name)

Will show the name of the storage area if there isn't any product in the storage area.

IF

IFS

MAX

Returns the MAX value of two or more values

Example

MAX(1, 3, 2)

will return 3

MIN

Returns the MIN value of two or more values

Example

MAX(42, 1, 100)

will return 1

NOT

ROUND

SWITCH