Another example
List 1 List 2 List 3
Aaa Bbb Aaa [Bbb]
Ccc Ccc Ccc
Ddd Eee Ddd Ddd [Eee Ddd]
The other possibility:
All values in list one match list two, but some are "partial matches" (the left part of the second list item matches the full first list item, but may be longer)
See I'm having some trouble understanding what your goal is.
Main Topics
Browse All Topics





by: qwaleteePosted on 2003-12-12 at 12:20:38ID: 9930672
Let me see if I understand what you are doing.
Some list one values exactly match list two values. Some do not. Both lists are exactly the same length. If two correspnding values match, use teh value as is. if they do not match, use value_from_list_1 + " [" + value_from_list_2 + "]"
Correct?