Column Expressions

Good morning people, everything fine ?

I would like to add the following option to my criteria used in the column expression.

OR column(“SIGN (right) (right)”)))=“”

In short :

IF A=Missing or A=“” => column(“SIGN (right)”

if (isMissing(column(“SIGLA (right) (right)”))) {column(“SIGLA (right)”)}
else {column(“SIGLA (right)”)+“=>”+column(“SIGLA (right) (right)”)}

The syntax for OR is || in the Column Expression Node.

2 Likes

Do you know what could have gone wrong??

A few things on the 1st if clause.

Use == instead of =

Also, you closed out the parenthesis on your if statement too early. Remove one from the end of the first column name and place it after the ==“”.

1 Like

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.