Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
A small macro should do it. Something like:
Sub SelectLockedCells() Dim c As Range, rng As Range For Each c In ActiveSheet.UsedRange.Cells If c.Locked Then If rng Is Nothing Then Set rng = c Else Set rng = Union(c, rng) End If End If Next rng.Select End Sub "Darin Kramer" wrote in message ... Howdie, Is there a way to select all locked cells within a sheet? Alternatively, could I produce a new sheet with all the references of the locked cells...? (eg b1,c3,c9... etc would be all the locked cells...) Thanks D :) *** Sent via Developersdex http://www.developersdex.com *** |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Locked worksheet & hyperlinks (w/ select locked cells unchecked) | Excel Discussion (Misc queries) | |||
View Locked Cells? | Excel Worksheet Functions | |||
View which cells are locked? | Excel Discussion (Misc queries) | |||
Locked view | Excel Discussion (Misc queries) | |||
Open Locked Columns to view code? | Excel Programming |