Home>Blogs>VBA>Protect Excel Worksheet as UserInterFaceOnly
User Interface Protection
VBA

Protect Excel Worksheet as UserInterFaceOnly

Just assume you a worksheet wherein you have few groups for column or rows and then you protected that worksheet. Now will you be able to expand or collapse those groups? No, you cannot expand or collapse it because it will show error as worksheet is protected.

How to expand or collapse group while worksheet is protected
How to expand or collapse group while worksheet is protected

 

If your worksheet is protected and you want to enter some value on protected cells using VBA, then it shows some runtime error because you cannot enter the value on protected worksheet even using VBA.

In this case you need to protect your worksheet as UserInterFaceOnly using VBA.

What is UserInterFaceOnly?

The UserInterFaceOnly  is an optional argument of the ProtectMethod in VBA that we can set to True. By default, it is False. By setting this argument to True Excel will allow all Excel VBA macros to run on the Worksheet that protected with or without a password. For manual changes it will be still protected.

Below is the example of code wherein we are entering the data on protected worksheet using VBA.

Sub Protect_Sheet()

    Dim sh As Worksheet
    Set sh = ThisWorkbook.Sheets("Sheet1")

    sh.Protect "1234", userinterfaceonly:=True
    sh.Range("E4").Value = "WWW.PK-AnExcelExpert.Com"

End Sub

If you save, then reopen the workbook that contains this wonderful piece of code, this worksheet will remain protected and your macro can’t enter the value. The code must run each time you open the workbook. So, the better option is put your code on workbook open event.

Now for the first scenario expand and collapse group on protected worksheet, just put below code on workbook open event

Private Sub Workbook_Open()

Dim sh As Worksheet
Set sh = ThisWorkbook.Sheets("Employee Sales")

sh.Protect "1234", userinterfaceonly:=True
sh.EnableOutlining = True

End Sub

 

Click here to download this practice file.

 

Watch the step by step video tutorial:

PK
Meet PK, the founder of PK-AnExcelExpert.com! With over 15 years of experience in Data Visualization, Excel Automation, and dashboard creation. PK is a Microsoft Certified Professional who has a passion for all things in Excel. PK loves to explore new and innovative ways to use Excel and is always eager to share his knowledge with others. With an eye for detail and a commitment to excellence, PK has become a go-to expert in the world of Excel. Whether you're looking to create stunning visualizations or streamline your workflow with automation, PK has the skills and expertise to help you succeed. Join the many satisfied clients who have benefited from PK's services and see how he can take your Excel skills to the next level!
https://www.pk-anexcelexpert.com