I need to check if the columns contain either of the 2 strings and then replace column value with value in another column.
Here's the code -
For(i=1,i<= NRows(dt),i++,
if(contains(:step[i],"NA")| contains(:step[i],".") ,
:step[i] = description[i];
)
);
But I get an error saying - argument is wrong type in access or evaluation of 'Contains'
What am I doing wrong here?