18+ SEO Excel Functions | Blind Five Year Old
SEO Excel Functions
LEN
Character Length in Excel
The LEN function returns the number of characters in a cell. It’s particularly handy in creating the right title and meta descriptions. Remember to keep your titles to ~60 characters and meta descriptions to ~150 characters.
TRIM
Phantom spaces at the beginning or end of a cell can be maddening. So before you go Office Space on your keyboard use the TRIM function which gets rid of any spaces before or after text. It’ll also get rid of any extra spaces between words. Think of TRIM as a vacuum cleaner for spaces.
SUBSTITUTE
This is just what it sounds like. Using the SUBSTITUTE function you can find specific text and substitute it for different text. It doesn’t sound all that interesting but it turns out to be vital in creating useful formulas.
Word Count Formula
There’s no out of the box word count function. But with a little creativity you can create a useful word count formula using the three functions above.
=LEN(TRIM(A1))-LEN(SUBSTITUTE(A1,” “,”"))+1
Comments are closed.