We have a protected worksheet that users need to be able to spell check for only specific cells that they input consisting of merged cells. We only want spell checking for certain cells because if spell check went for the whole worksheet it would pick up a few of the protected areas and suggest spelling for them which we don't want changed.
for these cells:
A50, A59, A71, A80, A92, A101, A113, A122, A129, A132, A138, A141, A144, A147, A150, A153, A156, A159, A174, A177
We currently have a button macro set up to email the worksheet when they finish entering their data - - - is there a way to spell check first then either:
---add to the current email macro to spell check to those specific cells and after you get the "The spelling check is complete for the selected cells" or "entire sheet" box to finish the macro and email
or
---set up a button macro to enable spell check for only those specific cells
spelling language is English (U.S.) (is it possible to have excel highlight the misspelling???)
we have not set up a range and would prefer not to so we would like for it to go cell by cell listed above
from reading through the message board it looks like we will be using Cells.CheckSpelling
so maybe something like if len(A50)>0 then spell check once ok then if len(A59)>0 then spell check . . .
We have limited vba skills
Thanks
for these cells:
A50, A59, A71, A80, A92, A101, A113, A122, A129, A132, A138, A141, A144, A147, A150, A153, A156, A159, A174, A177
We currently have a button macro set up to email the worksheet when they finish entering their data - - - is there a way to spell check first then either:
---add to the current email macro to spell check to those specific cells and after you get the "The spelling check is complete for the selected cells" or "entire sheet" box to finish the macro and email
or
---set up a button macro to enable spell check for only those specific cells
spelling language is English (U.S.) (is it possible to have excel highlight the misspelling???)
we have not set up a range and would prefer not to so we would like for it to go cell by cell listed above
from reading through the message board it looks like we will be using Cells.CheckSpelling
so maybe something like if len(A50)>0 then spell check once ok then if len(A59)>0 then spell check . . .
We have limited vba skills
Thanks