+ Reply to Thread
Results 1 to 2 of 2

Excel file not doing read-only when accessed by multiple users, creates empty folders

Hybrid View

  1. #1
    Registered User
    Join Date
    03-08-2018
    Location
    Boulder, CO, USA
    MS-Off Ver
    16.10
    Posts
    1

    Excel file not doing read-only when accessed by multiple users, creates empty folders

    This is in regards to Excel on a Mac running High Sierra with all updates completed. I work in a research lab and we use an Excel file to enter data. The file is saved on a server that multiple people access from different locations. Usually if someone else has it open, it will only open in read-only. Lately, if a second person tries to open it, a message pops up that says:

    "Alert. We found a problem with some content in 'file name.xlsx.' Do you want us to try to recover as much as we can? If you trust the source of this workbook, click Yes."

    If you click Yes, another pop up says:

    "Alert. The workbook cannot be opened or repaired by Microsoft Excel because it is corrupt."

    At some point (we haven't been able to determine when, as it doesn't seem to be predictable) an empty folder is created, that has the same name as the Excel file but with a string of varying letters and numbers after it. Multiple empty folders like this are created every day. Some examples of the string of letters and numbers are as follows (I've started with the xlsx extension and have not included the full file name), notice that the first 12 characters repeat:

    xlsx.sb-388634f5-whyS2F
    xlsx.sb-388634f5-h0hqXF
    xlsx.sb-388634f5-GUudM6
    xlsx.sb-388634f5-hBFtWk
    xlsx.sb-388634f5-rkVL5q

    xlsx.sb-30dc7262-36Lomy
    xlsx.sb-30dc7262-1I4KOA
    xlsx.sb-30dc7262-BzfXuT
    xlsx.sb-30dc7262-ZqrDyE

    It seems like in general the first 12 characters of each string is the same if the folders were created on the same day, but definitely not always. Sometimes the string is the same over several days, or there are random other strings in the middle of the group of a different string. Any help is greatly appreciated!! This has been a problem for months and IT doesn't know why it's happening. Note that not all of the files in the attached screenshot are relevant, there is an SPSS file and one of the xlsx files is something else (the one that ends in JL.xlsx). The original Excel file that is the issue is the top file in the screen shot. Thank you!!
    Attached Images Attached Images

  2. #2
    Valued Forum Contributor ranman256's Avatar
    Join Date
    07-29-2012
    Location
    Kentucky
    MS-Off Ver
    Excel 2003
    Posts
    1,190

    Re: Excel file not doing read-only when accessed by multiple users, creates empty folders

    you should look into using an Access database that allows multi users to access the data.

    for excel, you can give a warning and kick them out....
    open the workbook, enter VBE (alt-F11)
    in the left pane , Projects, dbl-click the ThisWorkbook object
    in the right pane, the code area, paste the following:

    Private Sub Workbook_Open()
    CheckIsOpenByAnother
    end sub
    
    Public Sub CheckIsOpenByAnother()
    If ActiveWorkbook.ReadOnly Then
        MsgBox "The file is in use by another"
        ActiveWorkbook.Close False
    End If
    End Sub

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Excel macro that creates pdf files in Dropbox folders works inconsistently in Windows 8
    By KathyS_893 in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 03-23-2013, 12:03 AM
  2. Replies: 2
    Last Post: 02-11-2013, 08:44 AM
  3. More users in 1 Excel file , VBA userform. read only solution?
    By stevnb in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 11-27-2012, 10:11 AM
  4. Replies: 1
    Last Post: 01-18-2012, 06:59 PM
  5. Replies: 1
    Last Post: 01-18-2012, 06:57 PM
  6. Having excel doc open by multiple users without read only
    By kimbcroc in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 03-21-2010, 09:25 PM
  7. file cannot be accessed, could be read only
    By somnath shetty in forum Excel General
    Replies: 2
    Last Post: 04-10-2006, 10:35 AM
  8. Excel files are 'read only' when accessed over network.
    By gracenote in forum Excel General
    Replies: 1
    Last Post: 07-14-2005, 10: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