Excel Unique Function

divyanand

New Member
Joined
Jun 11, 2021
Messages
2
Office Version
  1. 365
  2. 2019
  3. 2016
Platform
  1. Windows
Hi All,
I am working in an automobile manufacturing company which manufactures thousands of Engines.
For example, let us consider 3 different types of engine (say Engine 1, 2,3).
Each engine is made from different parts (say a,b,c,d,e).
I need the list of all parts used in all Engines in the worksheet in a single column (as shown in Column H).
I tried using the Unique function, it is not working.

looks very simple,
can some on please help ?
 

Attachments

  • Image.png
    Image.png
    9 KB · Views: 10

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
Hi

=SORT(UNIQUE(FILTERXML("<A><B>"&TEXTJOIN("</B><B>";;A2:C5)&"</B></A>";"//B")))
 
Upvote 0
Roughly how many cells do you need to look at?
 
Upvote 0
If you have thousands of cells, try
+Fluff 1.xlsm
ABCDEFGH
1Engine 1Engine 2Engine 3Engine 4Engine 5Engine 6Output
2FMLLQXF
3KJIBPK
4NSEUN
5UCVU
6SCES
7M
8J
9L
10I
11C
12B
13E
14Q
15P
16V
17X
18
Main
Cell Formulas
RangeFormula
H2:H17H2=LET(Ary,A2:F6,Rws,ROWS(Ary),Seq,SEQUENCE(Rws*COLUMNS(Ary),,0),Idx,INDEX(Ary,MOD(Seq,Rws)+1,INT(Seq/Rws)+1),UNIQUE(FILTER(Idx,Idx<>"")))
Dynamic array formulas.
 
Upvote 0
If you have thousands of cells, try
+Fluff 1.xlsm
ABCDEFGH
1Engine 1Engine 2Engine 3Engine 4Engine 5Engine 6Output
2FMLLQXF
3KJIBPK
4NSEUN
5UCVU
6SCES
7M
8J
9L
10I
11C
12B
13E
14Q
15P
16V
17X
18
Main
Cell Formulas
RangeFormula
H2:H17H2=LET(Ary,A2:F6,Rws,ROWS(Ary),Seq,SEQUENCE(Rws*COLUMNS(Ary),,0),Idx,INDEX(Ary,MOD(Seq,Rws)+1,INT(Seq/Rws)+1),UNIQUE(FILTER(Idx,Idx<>"")))
Dynamic array formulas.
Awesome
Thank you
 
Upvote 0
Glad we could help & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,974
Messages
6,122,536
Members
449,088
Latest member
RandomExceller01

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