Results 1 to 13 of 13

Excel 2013 - Adjust Excel Sheet Protection options to allow users to make some changes

Threaded View

  1. #1
    Registered User
    Join Date
    07-19-2017
    Location
    Auckland
    MS-Off Ver
    Microsoft Office 2013
    Posts
    15

    Excel 2013 - Adjust Excel Sheet Protection options to allow users to make some changes

    Hi There. I am needing to make an adjustment to the protection options in my excel workbook. I have set these options within the Microsoft Excel 2013 user interface, however - purhaps the macro I am running is overriding this.

    I need users to be able to:

    -Select Locked Cells
    -Select Unlocked cells
    -Format Cells
    -Insert Rows

    Could this be built into the existing macro as shown below? I have also attached a screen capture of the options set within Microsoft Excel Protect sheet. These options are set, however users are not able to make any of these changes after the Macro is run.


    Capture.PNG

    Private Sub Workbook_SheetActivate(ByVal Sh As Object)
        Dim colorIndex As Integer
        Dim xRg As Range
        Dim color As Long
        
        Sh.Unprotect Password:="Yourpasswordhere"
        
        colorIndex = 3
        
        Application.ScreenUpdating = False
        For Each xRg In Sh.UsedRange.Cells
        
            color = xRg.Interior.colorIndex
            If (color = colorIndex) Then
                xRg.Locked = True
            End If
        Next xRg
        
        Application.ScreenUpdating = True
        Sh.Protect Password:="Yourpasswordhere" DrawingObjects:=True, Contents:=True, Scenarios:=True _
            , AllowFormattingCells:=True, AllowInsertingRows:=True
    
    End Sub
    Last edited by aLi3nZ; 07-19-2017 at 06:39 PM.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Replies: 0
    Last Post: 09-06-2005, 10:05 AM
  2. Replies: 3
    Last Post: 09-06-2005, 07:05 AM
  3. Replies: 3
    Last Post: 09-06-2005, 04:05 AM
  4. Replies: 0
    Last Post: 09-06-2005, 03:05 AM
  5. Replies: 0
    Last Post: 09-06-2005, 02:05 AM
  6. Replies: 0
    Last Post: 09-05-2005, 11:05 PM
  7. Replies: 0
    Last Post: 09-05-2005, 10:05 PM
  8. Replies: 2
    Last Post: 06-28-2005, 01:05 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1