Create Unique List Of 5 Letter Words From A List

scampitelli

New Member
Joined
Nov 27, 2011
Messages
5
My problem is that i have a column of (1 to 6) letter words.
I would like to create a unique list showing all 5 letter words in that list sorted or unsorted.
I would like this done by using an excel formula only.
Is this possible?

Thanks in advance for anybodys help.
 
Thank you, Tony and PGC.
You two were so helpful.
Tony, I am still trying to understand your answer - but I am sure it works.
PGC - that is a pretty slick formula, I like how you handled the UNIQUE side of my problem.
Thanks again.
 
Upvote 0

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
You're welcome. Thanks for the feedback.


I am using 2007.

I came up with this to put in cell c2 - then copy down to c1001:

=IFERROR(INDEX($A$2:$A$1001,SMALL(IF(LEN($A$2:$A$1001)=5,ROW($A$2:$A$1001)-ROW(A$2)+1),ROWS(A$2:A2))),"")

Must use <CONTROL><SHIFT><ENTER>- array formula.

BUT - it is not a unique list.

Remark: If you want to use the Index(,Small()) construct, adding the condition for uniqueness, another option, in B2 as array formula:

=IFERROR(INDEX($A$2:$A$13,SMALL(IF(LEN($A$2:$A$13)=5,IF(COUNTIF(OFFSET($A$2,0,0,ROW($A$2:$A$13)-ROW($A$2)+1,1),$A$2:$A$13)=1,ROW($A$2:$A$13)-ROW($A$2)+1)),ROWS($B$2:B2))),"")

In this case the items in the output appear in the same order as in the input list. Not as efficient as the other formula, though.
 
Upvote 0

Forum statistics

Threads
1,214,650
Messages
6,120,736
Members
448,988
Latest member
BB_Unlv

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