Welcome toExcel.Tips.Net
Tips.Net Home
ExcelTips Home
Ask an Excel Question
Make a Comment
ExcelTips FAQ
ExcelTips Premium
Beauty Tips
Car Tips
Cleaning Tips
College Tips
Cooking Tips
Excel2007 Tips
ExcelTips
Family Tips
Gardening Tips
Health Tips
Home Tips
Money Tips
Organizing Tips
Pest Tips
Pet Tips
Wedding Tips
Word2007 Tips
WordTips
Advertise on the
ExcelTips Site
Assigning a Macro to a Keyboard Combination
Hiding Rows Based on a Cell Value
Craig has a protected Excel worksheet in which he would like to spell-check a specific cell. The problem, of course, is that the spell-checker cannot be run on a protected worksheet. So, the process of doing the desired spell-checking is to unprotect the worksheet, do the check, and then again protect the worksheet.
In order to have the macro complete these steps, you must know the password used to protect the worksheet. The following simple example assumes that the password is "mypass."
Sub SpellCheckCell1()
With ActiveSheet
.Unprotect ("mypass")
.Range("A15").CheckSpelling
.Protect ("mypass")
End With
End Sub
You'll obviously need to change the password used in the macro to the one appropriate for your worksheet. You'll also need to change the cell being checked; this macro checks cell A15. If you would rather have the macro check whatever cell is selected when the macro is run, then you can change it in this manner:
Sub SpellCheckCell2()
With ActiveSheet
.Unprotect ("mypass")
Selection.CheckSpelling
.Protect ("mypass")
End With
End Sub
Regardless of which macro you use, you can assign it to a shortcut key or a toolbar button in order to make it easy to run. (How you do these assignments has been discussed in other ExcelTips issues.)
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (3144) applies to Microsoft Excel versions: 97 2000 2002 2003 2007
Save Time! ExcelTips has been published weekly since late 1998. Past issues of ExcelTips are available in convenient ExcelTips archives. Have your own enhanced archive of ExcelTips at your fingertips, available to use at any time!