Subtraction with missing value in column expression node should lead to missing (result) value

I’d start with trying the following expression in the Column Expressions node:

if(isMissing(column("y")))
{ missingValue() }
else
{ (column("x")-column("y"))/column("x") }
4 Likes