Auto Format locked cells

fireslguk

Active Member
Joined
Nov 11, 2005
Messages
298
Hi I want to adapt the code below so when the cell has locked after some input the background changes colour

The code is

Worksheet. Change

Private sub worksheet_change(byval target as range)

Activesheet.unprotect password:=“blablabla”
Target.locked = true
Activesheet.protect password := etc etc

End sub
 

Excel Facts

Why does 9 mean SUM in SUBTOTAL?
It is because Sum is the 9th alphabetically in Average, Count, CountA, Max, Min, Product, StDev.S, StDev.P, Sum, VAR.S, VAR.P.
Try
Code:
Target.Locked = True
Target.Interior.Color = 45678
Activesheet.protect password := etc etc
 
Upvote 0
Hi

You can set the interior colour property of the cell in a similar way to the locked property

Code:
Private Sub Worksheet_Change(ByVal Target As Range)
With Me
    .Unprotect "Password"
    With Target
        .Locked = True
        .Interior.Color = rgbLightGrey
    End With
    .Protect "Password"
End With
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,066
Messages
6,122,948
Members
449,095
Latest member
nmaske

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