Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Similar to Excel's "Go To Special" feature (Edit | Go To... | Special), I
need a quick and easy way to find and highlight all cells whose protection has been set to locked and/or hidden. Is there a way I can do that in Excel, or is there a third-party add-in that can help? Thanks, Bob |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Run this sub:
Sub gsnu() Dim rr As Range For Each r In ActiveSheet.UsedRange If r.Locked Or r.FormulaHidden Then If rr Is Nothing Then Set rr = r Else Set rr = Union(rr, r) End If End If Next If rr Is Nothing Then Else rr.Select End If End Sub -- Gary's Student "Bob" wrote: Similar to Excel's "Go To Special" feature (Edit | Go To... | Special), I need a quick and easy way to find and highlight all cells whose protection has been set to locked and/or hidden. Is there a way I can do that in Excel, or is there a third-party add-in that can help? Thanks, Bob |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() "Bob" wrote: Similar to Excel's "Go To Special" feature (Edit | Go To... | Special), I need a quick and easy way to find and highlight all cells whose protection has been set to locked and/or hidden. Is there a way I can do that in Excel, or is there a third-party add-in that can help? Thanks, Bob |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
As always, thanks for your help. I sincerely appreciate it.
Have a very Happy & Healthy New Year! Bob "Gary''s Student" wrote: Run this sub: Sub gsnu() Dim rr As Range For Each r In ActiveSheet.UsedRange If r.Locked Or r.FormulaHidden Then If rr Is Nothing Then Set rr = r Else Set rr = Union(rr, r) End If End If Next If rr Is Nothing Then Else rr.Select End If End Sub -- Gary's Student "Bob" wrote: Similar to Excel's "Go To Special" feature (Edit | Go To... | Special), I need a quick and easy way to find and highlight all cells whose protection has been set to locked and/or hidden. Is there a way I can do that in Excel, or is there a third-party add-in that can help? Thanks, Bob |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You are very welcome! Stay safe this weekend.
-- Gary's Student "Bob" wrote: As always, thanks for your help. I sincerely appreciate it. Have a very Happy & Healthy New Year! Bob "Gary''s Student" wrote: Run this sub: Sub gsnu() Dim rr As Range For Each r In ActiveSheet.UsedRange If r.Locked Or r.FormulaHidden Then If rr Is Nothing Then Set rr = r Else Set rr = Union(rr, r) End If End If Next If rr Is Nothing Then Else rr.Select End If End Sub -- Gary's Student "Bob" wrote: Similar to Excel's "Go To Special" feature (Edit | Go To... | Special), I need a quick and easy way to find and highlight all cells whose protection has been set to locked and/or hidden. Is there a way I can do that in Excel, or is there a third-party add-in that can help? Thanks, Bob |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Finding cells that contain an apostrophe | Excel Discussion (Misc queries) | |||
Finding blank cells | Excel Discussion (Misc queries) | |||
Calculating only non-empty cells... | Excel Worksheet Functions | |||
Finding Cells | Excel Worksheet Functions | |||
Finding unnamed cells in a range | Excel Discussion (Misc queries) |