Results 1 to 9 of 9

Workbook protection - prevent certain users to view some of the sheets

Threaded View

  1. #2
    Forum Expert
    Join Date
    04-22-2013
    Location
    .
    MS-Off Ver
    .
    Posts
    4,418

    Re: Workbook protection - prevent certain users to view some of the sheets

    The worksheets have three options for the visible property:
    -visible
    -hidden
    -veryhidden
    Try setting the sheet to very hidden
    Sheets(1).visible = xlveryhidden
    This stops users unprotecting the workbook to get at the hidden sheets, you need to do it from within the vba editor. You can then put a password on the vba project to stop them doing this. It is not 100% secure but I expect it would be good enough for your purposes.

    With regards to saving, my suggestion would be to use events to trigger the macros. Then the planner should be able to proceed as normal and the hiding/unhiding of the sheets should be done automatically.

    You can use the beforesave event to run the macro you have written, with a slight change of a cancel added for the excel save. Then your planner will just need to press save (or save as) to trigger the macro. After it has saved, I would then suggest that you test the username and if it is that of the planner, you can then unhide the sheets.

    The code would be something like this:
    Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean)
    Dim fname
    For count = 2 To 60
        Sheets(count).Visible = xlVeryHidden
    Next
    Application.ScreenUpdating = False
    fname = Application.GetSaveAsFilename
    Cancel = True
    ActiveWorkbook.SaveAs Filename:=fname
    If Application.UserName = "Planner" Then
        For count = 2 To 60
            Sheet(count).Visible = xlVisible
        Next
    End If
    Application.ScreenUpdating = True
    End Sub
    and it needs to go in the "ThisWorkbook" object in the vbaproject

    Edit: you would also want the last part of the code in the open event for the workbook:
    Private Sub Workbook_Open()
    application.screenupdating = false
    If Application.UserName = "Planner" Then
        For count = 2 To 60
            Sheet(count).Visible = xlVisible
        Next
    End If
    application.screenupdating = true
    Again, put this in the ThisWorkbook object
    Last edited by ragulduy; 05-22-2013 at 06:30 AM.

Thread Information

Users Browsing this Thread

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

Tags for this Thread

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