Replacing cell values

Hi @Shadi

One way to solve this is via a contains() function. For example:

if (contains(column("column1"),"?") == true || contains(column("column1"),"nu") == true) {
   null 
} else {
    column("column1")
}

1 Like