Consulting

Page 2 of 2 FirstFirst 1 2
Results 21 to 23 of 23

Thread: Multi Users in Excel

  1. #21
    VBAX Regular MikeBlackman's Avatar
    Joined
    Apr 2009
    Location
    Basingstoke, UK
    Posts
    19
    Location
    Hi,

    Maybe a loop like this for the second user?

    If Sheets("Lookups").Columns("N").Find(LogInName).Offset(0, 2) = "Full Access" Then
        Do Until ActiveWorkbook.ReadOnly = False
            ActiveWorkbook.ChangeFileAccess Mode:=xlReadWrite
        Loop
    End If
    I'm still not convinced its a good idea to re-create something thats already there
    Kind regards

    Mikey B

    Assiduus Adduco de Silentium

  2. #22
    VBAX Regular
    Joined
    Nov 2008
    Posts
    53
    Location
    I dont really want to recreate what is already there, I just want to give certain people access levels for the workbook, due to the requirements of the project I have been given.

    When it comes to a FullAccess User I am looking to do is this. When a FA User opens the workbook it scans the column Q to see if there is a date in the TimeDateStamp, if there is then I want it to say they cant edit until the other user has finished. I am then looking to have a refresh so every couple of minutes the refresh runs to see if there is any FA User still in the workbook, if not allow the other FA User to revert from the ReadOnly into the FullAccess so that they can edit/amend etc

  3. #23
    VBAX Regular
    Joined
    Nov 2008
    Posts
    53
    Location
    Does anyone have any ideas on this?

Posting Permissions

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