Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.
Originally posted by: stonysmithThe operands to the Join and XREF node allow expressions, not just field names.
Instead of using only the field name, use the uppercase function on the data.
LeftInputKey: toUpper(myfieldname)
RightInputKey: toUpper(myfieldname)
Or use toLower() .. either one would work
Let's say you have a date field that is formatted as a string: 2017-01-13
you could for example use:
LeftInputKey: left(mydatefield,4)
RightInputKey: left(mydatefield,4)
and this would match on just the YEAR portion of the field (first four characters)