Protect Excel Sheet for Manual Input but Allow Programming Inputs

Complete Excel VBA Course

Did you come across any requirement where you want the user to interact with a sheet only through VBA Form? A common way to achieve this is using Unprotect function available in VBA before making changes to the sheet and then protect it back using Protect function. See below an example:

Sheet1.Unprotect "123"
Sheet1.Range("A1").Value = "ABC"
Sheet1.Protect "123"

While this code works well but has small limitation, the code will produce error when Excel file is in Shared Mode. This is because you are not allowed to protect or unprotect a sheet when shared mode is on.

Here is a simple code which can help you here:

Complete Excel VBA Course
Sheet1.Protect Password:="123", UserInterfaceOnly:=True

In the code you will notice that UserInterfaceOnly has been passed as True that does the trick. If you protect a sheet with UserInterfaceOnly as True then Excel allows VBA to write data on the sheet without unprotecting it.

VBA Code to protect Excel sheet
Add a Shape: You need to run this code only once when the Excel file Shared Mode is off. So it would be better to add a shape in your Excel file such as below
Protect Excel Sheet for Manual Input
Insert VBA code in module:
Sub ProtectSheet()
    Sheet1.Protect Password:="123", UserInterfaceOnly:=True
End Sub
Protect Excel Sheet for Manual Input
Link the code with shape
Protect Excel Sheet for Manual Input
Protect Excel Sheet for Manual Input
Protect Excel Sheet for Manual Input
Protect Excel Sheet for Manual Input

Thanks for reading the article, subscribe us to get more VBA tricks.

Similar Posts

Leave a Reply

Your email address will not be published. Required fields are marked *