Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.
Originally posted by: stonysmithThat's not going to work. That would essentially require that every record on the lefthand side be tested against the righthand side, and the since the length of data being searched for is constantly changing, that could affect the sort order.
If the '2:Name' field is comma separated in the format "Last, First", then this might work:
LeftInputKey='1:LastName'
RightInputKey='2:Name'.split(",").getItem(0)