Cutsom Anagram Solver

  • Thread starter Thread starter Yamagi
  • Start date Start date
Y

Yamagi

Okay, I have this pretty cool idea but I don't have the skills to creat
this. This is something I would find pretty useful and would just lik
to toss it up for anybody to create.

I want an anagram solver and I have an idea of how it would work but
don't know how to code it. In Column A you could have all of you
words listed in alphabetical order. And in another column there coul
be a cell designated for typing in an anagram. And in another column
cell that displays any matches for that anagram.

Example:

Column A | Column B | Column C
asking | ecotisx | coexist
blooped
branch
burgers
chagrin
coexist
commove
cuisine

I hope you guys understand. I am pretty sure this is possible to make
but I don't know how to do it. Can anybody either explain to me how t
do it or make a book for me
 
FWIW this was published in PC Direct (p 401, Sept 95), sent in by Graham
Brown.
It's a Word macro which might give you a few ideas.


Sub MAIN
Dim x$(11)
WordLeft 1, 1
a$ = Selection$()
ToolsGetSpelling x$(), a$
For x = 0 To 10
Insert x$(x)
If Len(x$(x)) > 0 Then InsertPara
Next x
End Sub

--
Regards
Andy Wiggins
www.BygSoftware.com
Home of "Save and BackUp",
"The Excel Auditor" and "Byg Tools for VBA"
 
Back
Top