Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.
Originally posted by: carlosOriginally posted by: mmarinelli
I think the problem might be with the source strings. If you are trying to find "Baja" and instead you're finding "baja", your logic won't be triggered and you will end up with a NULL output. Also, if there are spaces in the source field, you will not get a match. A better approach would be to use the equalsI() function, which is case-insensitive, and to ensure that the input strings have been trimmed of white space prior to your filter. If this doesn't fix the problem, could you provide a few lines from the source file as an attachment so we can help diagnose the issue?
Thanks Mmarinelli, the problem was the first capital letter, now it is working.