Application.CheckSpelling Error in Macro

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Here is an extremely odd problem I am having...I am writing a macro and I need to write a function that will count the number of words not found in the dictionary for the text passed to the function. So, Application.CheckSpelling seems to be the way to go, but here is the problem - it doesn't work!

If I go to the immediate window and type ?Application.CheckSpelling("test", , False), it returns the correct result (True). Now, if I write this functio

Function Crazy(Text as String
Crazy = Application.CheckSpelling("test", , False
End Functio

and call it from a worksheet, it always returns False. It returns False for any word that you try to spell check. It is totally crazy that Application.CheckSpelling works in the immediate window in the VBA editor, but it doesn't work when you put it in a function in a macro and call that function from a cell. What am I doing wrong? Does anybody know how to correct this problem?
 
Bjorg

I don't think you're doing anything wrong. I can confirm in XL2000 that it
doesn't work properly when called from a cell. I don't know of any way
around it, though.

--
Dick Kusleika
MVP - Excel
Excel Blog - Daily Dose of Excel
www.dicks-blog.com

Bjorg P. said:
Here is an extremely odd problem I am having...I am writing a macro and I
need to write a function that will count the number of words not found in
the dictionary for the text passed to the function. So,
Application.CheckSpelling seems to be the way to go, but here is the
problem - it doesn't work!
If I go to the immediate window and type
?Application.CheckSpelling("test", , False), it returns the correct result
(True). Now, if I write this function
Function Crazy(Text as String)
Crazy = Application.CheckSpelling("test", , False)
End Function

and call it from a worksheet, it always returns False. It returns False
for any word that you try to spell check. It is totally crazy that
Application.CheckSpelling works in the immediate window in the VBA editor,
but it doesn't work when you put it in a function in a macro and call that
function from a cell. What am I doing wrong? Does anybody know how to
correct this problem?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top