Ok how would i achieve this. I have a current method but its very long.
so i have this 16 times for each length of word. Then i have to doCode:Public Sub Fourletters str = Mid(Word, 1) & "_" & Mid(Word, 2) & "_" & Mid(Word, 3)& "_" & Mid(Word, 4) list1.additem str
im sure there is a quicker method.Code:If Len(Word) = 2 Then Call TwoLetters If Len(Word) = 3 Then Call ThreeLetters
Thanks in advance.




Reply With Quote