Originally posted by: mseedig
My apologies, in my haste I ended up being unclear. The rule I referenced above:
=IF(ABSENT(ResultsFromPreviousRule) & PRESENT(MappedValue), IF(NOT(ISNUMBER(MappedValue)) , "ErrorCode"))
builds without an error, but I do not get the expected error code in the output when I have a non-numeric value in the input. That is the condition I was trying to fix. I tried the below modification, and get an M113 Error when building, Argument #1 for function ISNUMBER is invalid.
=IF(ABSENT(ResultsFromPreviousRule) & PRESENT(MappedValue), IF(NOT(ISNUMBER(TEXTTONUMBER(MappedValue))) , "ErrorCode"))
#IBMSterlingTransformationExtender#DataExchange#IBM-Websphere-Transformation-Extender