Everyone has their theories on the best starting word for the Wordle game. A lot of people suggest ADIEU. But when you look at the frequency of each letter in the 8000 possible words, a better start word has AROSE.
This video starts out with the most popular words. After that video wraps, a deep dive into the Dynamic Array Formulas that made all of this possible.
Table of Contents
(0:00) What's the best Wordle Starting Word?
(0:48) Statistical analysis of most common letters
(1:20) A few alternate best starting words
(2:11) Scoring ADIEU and other common starting words
(2:49) Learn Excel on Retrieve
(3:10) Organist Nancy Faust plays
(3:21) Using UNIQUE with By_Col set to True
(3:50) VSTACK from Charles Williams
(3:55) Getting rid of 0 from empty cells using FILTER
(4:23) FIND to find an array of letters
(5:29) XLOOKUP of each letter in a word.
This video starts out with the most popular words. After that video wraps, a deep dive into the Dynamic Array Formulas that made all of this possible.
Table of Contents
(0:00) What's the best Wordle Starting Word?
(0:48) Statistical analysis of most common letters
(1:20) A few alternate best starting words
(2:11) Scoring ADIEU and other common starting words
(2:49) Learn Excel on Retrieve
(3:10) Organist Nancy Faust plays
(3:21) Using UNIQUE with By_Col set to True
(3:50) VSTACK from Charles Williams
(3:55) Getting rid of 0 from empty cells using FILTER
(4:23) FIND to find an array of letters
(5:29) XLOOKUP of each letter in a word.
Transcript of the video:
Wordle what's the best starting word?
It's not ADIEU.
AROSE run circles.
Hey welcome back to the MrExcel Netcast, I am Bill Jelen.
As a follow up to my video about the Wordle Helper that I built in Excel.
Question is what is the best Wordle starting word?
There's lots of articles about this.
A lot of people like ADIEU because it gets rid of a lot of vowels. In this great Tweet here: “On the day that the Wordle answer is ADIEU, social media will implode”.
I don't think ADIEU is a great word.
These are the words that I found online.
And a lot of them seem to be using the Wheel of Fortune strategy.
You know at the end of Wheel of Fortune they give you R, S, T, L, N, and E?
So they are looking for words that have a lot of those.
Rather than the Wheel of Fortune strategy, let's take a statistical look at this.
In column A, I have the 8000 plus Scrabble words that are 5 letters.
Use some Excel functions here, which I'll explain in the out take to break that out to figure out how many words have the letter A or B or C.
We end up with this pivot table over here.
And the top five most popular letters are S, E, A, R, and O.
A word that has those five letters is going to win.
I think the best word is AROSE.
It has all five target letters.
If you're looking at the top 6 letters which includes the letter “i”, you also get ARISE and OSIER.
If you think about it, RAISE and SERAI are just basically anagrams of ARISE, so I think we throw those out.
Amongst the items here, I came up with how many of the target letters does it have.
But then also this one.
For the Score over here, I'm adding up the count of letters for each of the five letters.
The theory being that if we guess an “S” and we get a grey tile, then we eliminate 4124.
That's more value to me than eliminating let's say 924 if we find out there's not a K or 79 words If there's not a Q.
Comparing my word AROSE or these backup words here?
I mean if you think about it, if we all started using AROSE every day, the Wordle people would take advantage of that.
So it's nice, once in awhile throw in ARISE just for a little variability.
But let's compare these scores to the words that I find online all the time.
I've used some of these STARE, or STORE or ADIEU or AUDIO.
You know the problem with ADIEU and AUDIO is the “U”, right?
Getting, throwing the “U” out, the “U” is used in relatively so few of 1657.
Compared to the O or the I, it really scores very poorly.
So while ADIEU used to be my go to starting word from now on, it's going to be AROSE.
Give that a try on your next Wordle.
If you want to see some of the geeky Excel behind this, stick around for the out takes.
Otherwise let's wrap up.
Now, if you love Excel, check out my new courses on the Retrieve platform.
They're video courses but you just type what you're looking for.
It takes you right to that spot in the video and there's a complete transcript in several languages.
It's a super fast way to learn.
If you like these videos, please, down below, Like, Subscribe. and Ring the Bell.
Feel free to post any questions or comments down in the comments below.
As Nancy plays us out, don't forget to hang around if you want to see some of the Excel deep dive behind this.
I want to thank you for stopping by.
We'll see you next time for another netcast from MrExcel.
Alrighty, let's check out some of this cool Excel here to break a 5 letter word into five individual letters.
Using the MID function but asking for the numbers 1, 2, 3, 4 and 5e which gives me A, A, H, E, D.
But then this cool second argument to the UNIQUE saying that it's by column.
That's the first time I think I've ever used By Column.
And that gets rid of the duplicate extra A in there and gets me A, H, E, D like that.
The VSTACK - this is a Charles Williams function.
And then to get rid of the zeros that are being returned by that, just a simple little FILTER function there.
Give me everything from H2 Hash where H2 Hash is not equal to zero.
Straight pivot table here.
I'm actually wondering if I should have just done this with a couple of array functions.
Then you put in how many letters you're looking for.
Cool little function here.
The INDEX asking for the sequence of 1, 3, 4, 5, 6, 6, which gets me S, E, A, R, O, I.
And then this one – I was really, really happy with this little formula over here.
Let me break that one down for you.
Alright, So what I did is I said start up by saying I want to figure out how many of my target letters S, E, A, R, O, I are in AROSE.
So I asked for the equal FIND.
And what am I trying to find?
I'm going to try and find all six of those letters so 05 Hash.
05 hash right now.
Putting in a hash, I still need to press F4 to lock that down.
And where are we looking?
We're looking in the word AROSE.
And so for each of the six letters we're looking for, we're going to get where it's found.
So the S is found in the fourth position.
The E is found in the fifth position, and so on.
But the I down here is not found at all, right?
So in this case it's returning an array of 6.
I would ask for the top 7 letters, I'm getting an array of seven.
You can see how that works, right?
To simplify it down to just a single value, I wrap that in the COUNT function.
The COUNT function will throw out the #VALUE!
errors and can be just the ones that hit.
I was really happy with that.
OK, in this big formula here for Score.
Working from the inside.
Asking for the MID of AROSE and I passed the sequence of 1 through 5.
Of course, SEQUENCE one through 5 gives me the five letters.
So that forces MID to give me A, R, O, S, E which we'll see right here.
In case there's any duplicates there, I get rid of them.
That way if there were two S’s, it doesn't count twice.
So then I have those five letters A, R, O, S, E and I do an XLOOKUP of each of those letters into this table.
Looking for the letter, and then the count of letters.
And finally sending the whole thing back into the SUM function to sum up the score.
Cool little function there, so all kinds of great dynamic array formulas being used throughout this.
It's not ADIEU.
AROSE run circles.
Hey welcome back to the MrExcel Netcast, I am Bill Jelen.
As a follow up to my video about the Wordle Helper that I built in Excel.
Question is what is the best Wordle starting word?
There's lots of articles about this.
A lot of people like ADIEU because it gets rid of a lot of vowels. In this great Tweet here: “On the day that the Wordle answer is ADIEU, social media will implode”.
I don't think ADIEU is a great word.
These are the words that I found online.
And a lot of them seem to be using the Wheel of Fortune strategy.
You know at the end of Wheel of Fortune they give you R, S, T, L, N, and E?
So they are looking for words that have a lot of those.
Rather than the Wheel of Fortune strategy, let's take a statistical look at this.
In column A, I have the 8000 plus Scrabble words that are 5 letters.
Use some Excel functions here, which I'll explain in the out take to break that out to figure out how many words have the letter A or B or C.
We end up with this pivot table over here.
And the top five most popular letters are S, E, A, R, and O.
A word that has those five letters is going to win.
I think the best word is AROSE.
It has all five target letters.
If you're looking at the top 6 letters which includes the letter “i”, you also get ARISE and OSIER.
If you think about it, RAISE and SERAI are just basically anagrams of ARISE, so I think we throw those out.
Amongst the items here, I came up with how many of the target letters does it have.
But then also this one.
For the Score over here, I'm adding up the count of letters for each of the five letters.
The theory being that if we guess an “S” and we get a grey tile, then we eliminate 4124.
That's more value to me than eliminating let's say 924 if we find out there's not a K or 79 words If there's not a Q.
Comparing my word AROSE or these backup words here?
I mean if you think about it, if we all started using AROSE every day, the Wordle people would take advantage of that.
So it's nice, once in awhile throw in ARISE just for a little variability.
But let's compare these scores to the words that I find online all the time.
I've used some of these STARE, or STORE or ADIEU or AUDIO.
You know the problem with ADIEU and AUDIO is the “U”, right?
Getting, throwing the “U” out, the “U” is used in relatively so few of 1657.
Compared to the O or the I, it really scores very poorly.
So while ADIEU used to be my go to starting word from now on, it's going to be AROSE.
Give that a try on your next Wordle.
If you want to see some of the geeky Excel behind this, stick around for the out takes.
Otherwise let's wrap up.
Now, if you love Excel, check out my new courses on the Retrieve platform.
They're video courses but you just type what you're looking for.
It takes you right to that spot in the video and there's a complete transcript in several languages.
It's a super fast way to learn.
If you like these videos, please, down below, Like, Subscribe. and Ring the Bell.
Feel free to post any questions or comments down in the comments below.
As Nancy plays us out, don't forget to hang around if you want to see some of the Excel deep dive behind this.
I want to thank you for stopping by.
We'll see you next time for another netcast from MrExcel.
Alrighty, let's check out some of this cool Excel here to break a 5 letter word into five individual letters.
Using the MID function but asking for the numbers 1, 2, 3, 4 and 5e which gives me A, A, H, E, D.
But then this cool second argument to the UNIQUE saying that it's by column.
That's the first time I think I've ever used By Column.
And that gets rid of the duplicate extra A in there and gets me A, H, E, D like that.
The VSTACK - this is a Charles Williams function.
And then to get rid of the zeros that are being returned by that, just a simple little FILTER function there.
Give me everything from H2 Hash where H2 Hash is not equal to zero.
Straight pivot table here.
I'm actually wondering if I should have just done this with a couple of array functions.
Then you put in how many letters you're looking for.
Cool little function here.
The INDEX asking for the sequence of 1, 3, 4, 5, 6, 6, which gets me S, E, A, R, O, I.
And then this one – I was really, really happy with this little formula over here.
Let me break that one down for you.
Alright, So what I did is I said start up by saying I want to figure out how many of my target letters S, E, A, R, O, I are in AROSE.
So I asked for the equal FIND.
And what am I trying to find?
I'm going to try and find all six of those letters so 05 Hash.
05 hash right now.
Putting in a hash, I still need to press F4 to lock that down.
And where are we looking?
We're looking in the word AROSE.
And so for each of the six letters we're looking for, we're going to get where it's found.
So the S is found in the fourth position.
The E is found in the fifth position, and so on.
But the I down here is not found at all, right?
So in this case it's returning an array of 6.
I would ask for the top 7 letters, I'm getting an array of seven.
You can see how that works, right?
To simplify it down to just a single value, I wrap that in the COUNT function.
The COUNT function will throw out the #VALUE!
errors and can be just the ones that hit.
I was really happy with that.
OK, in this big formula here for Score.
Working from the inside.
Asking for the MID of AROSE and I passed the sequence of 1 through 5.
Of course, SEQUENCE one through 5 gives me the five letters.
So that forces MID to give me A, R, O, S, E which we'll see right here.
In case there's any duplicates there, I get rid of them.
That way if there were two S’s, it doesn't count twice.
So then I have those five letters A, R, O, S, E and I do an XLOOKUP of each of those letters into this table.
Looking for the letter, and then the count of letters.
And finally sending the whole thing back into the SUM function to sum up the score.
Cool little function there, so all kinds of great dynamic array formulas being used throughout this.