I am using the Wrangler plugin in Cloud Data Fusion. I need to perform an expression/condition that allows me to validate if a string field contains only numbers. If so, make those records Null

1

There are 1 best solutions below

0
Albert Shau On

One way to do this is with a custom transform. For example:

set-column :[column name] dq:isNumber([column name]) ? null : [column name]