Please see: Extracting and counting unique word frequency from a range
In that question the asker was seeking unique single words. I'm trying to accomplish the same but finding every unique pair of words. If a cell doesn't have two words, then it doesn't have any entries. If a cell has 3 words then it would have two combinations A + B and B + C
I've tried to parse with splits and substitute pipes for spaces by using the len(cell) - len(substitute(cell," ","")) which gives me the number of words, but that doesn't work either.