If list A has an item from list B create list C

aamarb

New Member
Joined
Nov 8, 2010
Messages
13
Hi Guys,

I receive a list of items pertaining a customer. I want to do is check if list A has an item from list B then create list C. The problem I’m having is that list A is all in one cell separated by a carriage return. So for example cell A3 has xxx xxy xxz, and can be up to 40 items. I want to compare it to list B which is on sheet 2 column A and if it is in list B show all matching items in cell C3, comma separated or carriage separated.

Many thanks in advance
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
This formula uses the TEXTJOIN function which is not supported by older versions of excel.

=TEXTJOIN(CHAR(10),TRUE,IF(ISNUMBER(SEARCH(CHAR(10)&B3:B40&CHAR(10),CHAR(10)&A3&CHAR(10))),B2:B40,""))

Note that this is an array formua which must be confirmed by pressing Ctrl Shift and Enter, not just Enter.
 
Upvote 0
How about
Code:
Function aamarb(St1 As String, Rng As Range) As String
   Dim Cl As Range
   Dim Sp As Variant
   Dim i As Long
   With CreateObject("scripting.dictionary")
      For Each Cl In Rng
         .item(Cl.Value) = ""
      Next Cl
      Sp = Split(St1, Chr(10))
      For i = 0 To UBound(Sp)
         If .exists(Sp(i)) Then aamarb = aamarb & Sp(i) & Chr(10)
      Next i
   End With
   aamarb = Left(aamarb, Len(aamarb) - 1)
End Function
Used like
=aamarb(A3,Sheet2!A2:A100)
 
Upvote 0
Cross posted https://www.excelforum.com/excel-fo...em-from-list-b-create-list-c.html#post5184753
https://www.ozgrid.com/forum/forum/...-list-a-has-an-item-from-list-b-create-list-c

While we do not prohibit Cross-Posting on this site, we do ask that you please mention you are doing so and provide links in each of the threads pointing to the other thread (see rule 13 here along with the explanation: Forum Rules).
This way, other members can see what has already been done in regards to a question, and do not waste time working on a question that may already be answered.
 
Last edited:
Upvote 0
Cross posted https://www.excelforum.com/excel-fo...em-from-list-b-create-list-c.html#post5184753
https://www.ozgrid.com/forum/forum/...-list-a-has-an-item-from-list-b-create-list-c

While we do not prohibit Cross-Posting on this site, we do ask that you please mention you are doing so and provide links in each of the threads pointing to the other thread (see rule 13 here along with the explanation: Forum Rules).
This way, other members can see what has already been done in regards to a question, and do not waste time working on a question that may already be answered.


Apologies, will remember for next time
 
Upvote 0
Have you tried either of the suggestions posted here?
 
Upvote 0
Ignore this, advising OP about cross posting, didn't see that Fluff had already raised this.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,780
Messages
6,121,527
Members
449,037
Latest member
tmmotairi

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top