Spell checking without the POP up ...

L

LarryLev

I want to have a macro that runs activecell.checkspelling, but NOT
show the popup. in psuedo code, what I need is:

while active cell <> ""
notaword = activecell.checkspelling

if notaword = false then
activerow.clearcontents
end if

activecell.offset

wend

in short, what I am looking for is a way to test the text contents and
figure out if it can be a word. If it is, then clear the row, and if
not, then just move on.

thanks.
 
N

NickHK

Larry,
There is a CheckingSpelling method for various Excel object.
The arguments and return value/behaviour depending on which is used. Check
the help.
Sound like Application.CheckSpelling may suffice for you.

NickHK
 

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

Top