is they a way to index match more than once?

tonywatsonhelp

Well-known Member
Joined
Feb 24, 2014
Messages
3,194
Office Version
  1. 365
  2. 2019
  3. 2016
Platform
  1. Windows
Hi Everyone,

I'm try to make a list based on a name selected

I'm getting stuck so please help if you can

Column A has names in it Repeated lots of time with column be having interests,
A
B
C
D
E
F
G
H
I
1
nAME

Interests
Sub
Chosen Name
Unique List
G is what i'm trying to create from A and b
2
tony
Film
Horry
tony
Film
3
bob
film
Books
4
bob
film
5
sue
books
6
tony
Books
7
tony
Books
8
bob
books
9
sue
film
10
sue
film
11
bob
books
12
tony
Film
Comedy
13
bob
film
14
sue
film
15
dave
books
dave
film

<tbody>
</tbody>

I want to create a list of just the unique interests in column b in column J
 

Excel Facts

Remove leading & trailing spaces
Save as CSV to remove all leading and trailing spaces. It is faster than using TRIM().
Put this in G2:

=IFERROR(INDEX(B:B,SMALL(IF($A$2:$A$16=$E$2,IF(COUNTIF($G$1:$G1,$B$2:$B$16)=0,ROW($A$2:$A$16))),1)),"")

change the ranges to match your sheet, and confirm with Control+Shift+Enter, not just enter. Then drag it down the column.

I'm not sure what you want in column J? Is it a list of all the interests, regardless of the person? If so,

=IFERROR(INDEX(B:B,SMALL(IF(COUNTIF($J$1:$J1,$B$2:$B$16)=0,ROW($B$2:$B$16)),1)),"")

in J2 with CSE.
 
Upvote 0

Forum statistics

Threads
1,215,020
Messages
6,122,709
Members
449,093
Latest member
Mnur

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