Prevent Unprotected Cell Status Change When Moving Cells

Jeffrey Mahoney

Well-known Member
Joined
May 31, 2015
Messages
2,804
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

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
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,459
Messages
6,124,944
Members
449,198
Latest member
MhammadishaqKhan

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