$coalesce(arg1,…,argN)

$coalesce(arg1,…,argN) returns the first non-null argument

The following example returns the value of ${territory} if it is not null; otherwise, it returns the value of ${region}:

$coalesce(${territory},${region})