help with List !!!!!
Posted by Paul Johnson on February 03, 2002 9:17 AM
I have three lists that I need to compare.
List 1 is the master list
List 2 is a subset of List 1
List 3 is a subset of one and may be contained in List 2
With VBA (list is too big for VLookups), I would like to select a cell in List 1, search List 2 to find the value from List 1, and search List 3 to find the value from List 1
If found the value is found in List 2 - copy the data in List 2 to the right of the data in List 1.
If not found - return value "No data"
If found the value is found in List 3 copy the data in List 3 to the right of the data in List 2.
If not found - return value "No data"
I know this would be some type of loop procedure, but my experience with loops is minimal. Your help is appreciated.