Hi would just like to ask what is the best way to compare 4
lists of names and only be left with the names that show up
in more than 1 of the lists, so for the example below i have 4
lists of names and peter only shows up in 1 so he should not
make it in to the final list, but the rest show up in more
than 1 list so will make it in.
The list of names would be stored in arrays list1$(), list2$()
list3$(), list4$(), and list5$() being the new list created by
the prossess of the 4 lists.
Example
list 1
------
scott
heather
john
trevor
gail
list 2
------
scott
heather
adam
john
trevor
gail
list 3
------
scott
heather
adam
trevor
gail
list 4
------
scott
heather
adam
peter
john
trevor
gail
list 5 (output)
------
scott
heather
adam
john
trevor
gail
guess am looking for the simplest way to do this with out
writing pages of code if thats possible.
Using PB 3.5
Thanks.
------------------
-Scott
lists of names and only be left with the names that show up
in more than 1 of the lists, so for the example below i have 4
lists of names and peter only shows up in 1 so he should not
make it in to the final list, but the rest show up in more
than 1 list so will make it in.
The list of names would be stored in arrays list1$(), list2$()
list3$(), list4$(), and list5$() being the new list created by
the prossess of the 4 lists.
Example
list 1
------
scott
heather
john
trevor
gail
list 2
------
scott
heather
adam
john
trevor
gail
list 3
------
scott
heather
adam
trevor
gail
list 4
------
scott
heather
adam
peter
john
trevor
gail
list 5 (output)
------
scott
heather
adam
john
trevor
gail
guess am looking for the simplest way to do this with out
writing pages of code if thats possible.
Using PB 3.5
Thanks.
------------------
-Scott
Comment