Prevent Unprotected Cell Status Change When Moving Cells

Jeffrey Mahoney

Well-known Member
Joined
May 31, 2015
Messages
2,797
Office Version
  1. 365
Platform
  1. Windows
I don't think there is an answer to this.

I have an unprotected range on a protected sheet. When an end user moves the contents of cell C5 to Cell C4, C5 becomes protected.

How do I prevent C5 from becoming protected?
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
Hi Jeffrey,
Put this code into ThisWorkbook module and save workbook
Rich (BB code):
' Put the below code into ThisWorkbook module
Option Explicit
 
Dim Addr As String, Ws As Worksheet
 
Private Sub Workbook_Open()
  Workbook_SheetSelectionChange ActiveSheet, Selection
End Sub
 
Private Sub Workbook_SheetSelectionChange(ByVal Sh As Object, ByVal Target As Range)
  'If Not Sh Is Sheet1 Then Exit Sub  '<-- Uncomment this line for the Sheet1 only
  If Application.CutCopyMode Then Exit Sub
  If Addr <> vbNullString Then
    On Error Resume Next
    Ws.Range(Addr).Locked = False
    Addr = vbNullString
    On Error GoTo 0
  End If
  If Target.Locked = False Then
    Set Ws = Sh
    Addr = Target.Address
  End If
End Sub
 
Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean)
  Workbook_Open
End Sub
Best Regards,
Vladimir
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,052
Messages
6,122,878
Members
449,097
Latest member
dbomb1414

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top