How do you sort words in Excel by the number of letters in a word

K

Kinger

I have a list of 5,000 words that I need sort by the number of letters in the
word for my students is this possible to do? The words range from 1 letter
to 9 letters in a word.
 
D

David McRitchie

with the use of a helper column
=LEN(A1)

if you do not want to count spaces
=LEN(SUBSTITUTE(A1," ",""))
 
J

JE McGimpsey

in another column (say, column B) enter:

B1: =LEN(A1)

and copy down as far as necessary.

Sort columns A:B using column B as the sort key.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top