Home |
Search |
Today's Posts |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
This handles the entire used range on the active sheet.
Change the range to suit... '------------------------------ Sub ColorWhatsLocked() Dim rngCell As Excel.Range Application.ScreenUpdating = False ActiveSheet.UsedRange.Interior.ColorIndex = xlColorIndexNone For Each rngCell In ActiveSheet.UsedRange.Cells If rngCell.Locked Then rngCell.Interior.ColorIndex = 3 Next 'rngCell Application.ScreenUpdating = True End Sub Sub RemoveColor() ActiveSheet.UsedRange.Interior.ColorIndex = xlColorIndexNone End Sub ------------- Jim Cone San Francisco, USA http://www.realezsites.com/bus/primitivesoftware "jonco" wrote in message Is there an easy way to have a cell display certain text or formatting when the sheet is protected or unprotected? I'd like to have several cells, A32:D32 be colored red (for instance) when the worksheet is unprotected. You guys have been a GREAT help to me during this project. Thanks!!!!! Jon |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How can I merge unprotected cells in a protected worksheet? | Excel Worksheet Functions | |||
Delete unprotected cells in protected worksheet | Excel Worksheet Functions | |||
How can I have formatting toolbar active for the unprotected(unlocked) cells of the protected worksheet??? | Excel Discussion (Misc queries) | |||
Protected worksheet with unprotected cells i.c.w. remarks | Excel Worksheet Functions | |||
adding comments to unprotected cell/range in protected worksheet | Excel Worksheet Functions |