Lock cells with a random password

JSavo

New Member
Joined
Jul 11, 2016
Messages
3
Hi

I need a way to lock cells permanently, so not even I can get back into it.

e.g. Lock cells A1 to A10. I can't know the password. I can't alter the VBA code to get back in.

Is this possible?

Cheers!
 

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.
You can try something like:
Code:
    Dim PassWord As String    Dim i As Integer
    Dim k As Integer
    Dim l As Integer
    
    l = Int((20 - 10 + 1) * Rnd + 10)   'Random length between 10 and 20
    
    For k = 1 To l
    
    i = Int((125 - 48 + 1) * Rnd + 48)
    
    PassWord = PassWord & Chr(i)
    
    Next k
    
    ActiveSheet.Protect (PassWord)

The protection applies for the whole sheet, not just certain cells. Use the Format Cells / Protection to set which cells you want to lock / unlock.
 
Upvote 0

Forum statistics

Threads
1,223,236
Messages
6,170,912
Members
452,366
Latest member
TePunaBloke

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