Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.
Originally posted by: awilliams1024Hi, just one other point of clarification on the 'null' values - are the values you are trying remove string literals containing the characters "NULL" (without the quotes) or are they actual
NULL values?
These two cases are treated differently. If it is the string "NULL" then the above solution is the one you want (though I'm not sure whether you want to use the 'and' operator rather than 'or' to combine the emit criteria). If you are dealing with
NULL values then the second criterion would need to be:
or isNotNull('1:ASOH_FNAME')
Or if both criteria must be matched:
and isNotNull('1:ASOH_FNAME')
Regards,
Adrian