
Tips.Net > ExcelTips Home > Formatting > Conditional Formatting > Protecting Conditional Formatting
Summary: If you have conditional formatting applied in a worksheet, the formulas in those formats may not be as secure as you would like. This tip explains the problem and shows you what you can do to guard the formulas. (This tip works with Microsoft Excel 97, Excel 2000, Excel 2002, Excel 2003, and Excel 2007.)
Larry wrote about a problem he was encountering with protecting a worksheet he developed. He has cells that contain both formulas and conditional formatting. He can protect both of them in a worksheet, but if someone selects a cell and copies it to another worksheet, the conditional formatting is visible.
When you copy a protected cell from one sheet to another, if the formulas in the source cell were hidden in the protection process, then the results of the formulas are pasted, unprotected, into the target cells. This is probably no big deal, as you wanted the formulas—not the results—protected.
Excel is not as protective about conditional formats, however. The conditional formats of the cells that you paste, since they are in an unprotected worksheet, can be viewed and modified, as desired. This can be a problem if the conditional formats contain formulas that you want to also keep private.
The only way around this problem is to disable the ability to copy anything from your protected worksheet. You do this through the use of a macro, added to the worksheet object, that would disable copying.
Private Sub Worksheet_Deactivate()
Application.CutCopyMode = False
End Sub
This macro works because anytime the worksheet is deactivated (meaning, the target worksheet is selected), then CutCopyMode is set to False. This results in the "marching ants" that appeared around the source cells when the user pressed Ctrl+C being removed, and pasting therefore no longer possible. Copying and pasting on the same worksheet is still fine; just not to a different (unprotected) worksheet.
Tip #3301 applies to Microsoft Excel versions: 97 2000 2002 2003 2007
More Power! Expand your skills and make Excel really sing! It's all possible with macros. The best resource anywhere for macros is ExcelTips: The Macros. Check it out today!
PivotTables don't need to be scary or mysterious. Use this powerful tool to analyze your data in ways you didn't know were possible. (more information...)
Ask an Excel Question
Make a Comment
ExcelTips FAQ
ExcelTips Premium
Beauty Tips
Bugs and Pests Tips
Car Tips
Cleaning Tips
College Tips
Cooking Tips
Excel2007 Tips
ExcelTips
Family Tips
Gardening Tips
Health Tips
Home Tips
Money Tips
Organizing Tips
Pet Tips
Word2007 Tips
WordTips
Advertise on the
ExcelTips Site