![]() |
#5
|
|||
|
|||
![]()
Hi Tinfanide,
unfortunately you can't have your cake and eat it too. The only way to protect data on a sheet using the excel tools is to protect the sheet. This causes the locked property to be enforced for each cell. You could possibly protect and unprotect the sheet if it meets a condition using the Worksheet_SelectionChange event. It could look something like this. Private Sub Worksheet_SelectionChange(ByVal Target As Range) If IsEmpty(Target) Then ActiveSheet.Unprotect Password:="dog" Else ActiveSheet.Protect Password:="dog", DrawingObjects:=True, Contents:=True, Scenarios:=True End If End Sub Alternatively you could password protect a range (Allow uses to edit ranges) located on the Review Tab however you would still need to protect and unprotect the data based on a condition. This method may just give you a bit more control over the data. I hope this helps! |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Protect / Lock Cells / Print Set-up? | meggenm | Excel | 3 | 01-26-2012 09:57 PM |
protect and unprotect in shared excel | mark-gabb | Excel | 0 | 01-09-2012 07:30 PM |
Excel 2010 Format cells to use as Gantt or Plan | Kizzie | Excel | 0 | 12-13-2011 02:31 AM |
![]() |
Dawg751 | Excel | 2 | 01-28-2010 06:23 AM |
![]() |
themangoagent | Word | 1 | 10-12-2009 08:14 AM |