bottom
Great ExcelTips!
         
Your e-mail address is safe!
Close Note

Tips.Net > ExcelTips Home > Formatting > Conditional Formatting > Protecting 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!

Helpful Links

Ask an Excel Question
Make a Comment

Tips.Net Home
Vital News Home

ExcelTips FAQ
ExcelTips Premium

Learn Access Now

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

 

Great Info!

Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your e-mail address and click "Subscribe."
     
(Your e-mail address will never be shared with anyone, ever.)