COLUMN EXPRESSION (contains and missing values

Hello there!

I am using the column expression for a specific column that I wanted to check.
This column contains multiple data and there’s a certain criteria that I would want to check if it’s true or not. Example:
image

For the example, all description that contains SOLD should be true and Missing description should also be true and for other description it should be FALSE.

Hi,

I’m freestyling here, but try this
column(“Description”)==‘SOLD’||isMissing(column(“Description”))

Cheers
/Martin

1 Like

Hi @lovebau,

You can try using Column Expression Node

3 Likes

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