hi community,
I like to dynamically clean-up and avoid the data-cleanse tool. I created below Multi-Field Formula and it gives an error when the first field is a numeric type. Any way to 1) fix this error and/or 2) enhance the steps/formula?
Thanks a lot 
Formula used (applied to 'All Types' and all fields, incl. unknown):
IF isnumber([_CurrentField_]) and isempty([_CurrentField_])
THEN tonumber([_CurrentField_],0,0)
ELSEIF isempty([_CurrentField_])
THEN Null()
ELSEIF IsString([_CurrentField_])
THEN trim([_CurrentField_])
ELSE [_CurrentField_]
ENDIF