Joe asked if there is a way to determine, in a macro, who has a particular workbook open. He thought about using the WriteReservedBy property, but it doesn't seem to have the information he needs.
Unfortunately, there is no way to determine this information from VBA—it just isn't accessible. The WriteReservedBy property doesn't show who has a file open; it shows who saved the workbook using a password. In other words, when someone saves a workbook with the option to have a password to modify it, the file is "WriteReserved." The WriteReservedBy property contains the name of the person that saved the file in the WriteReserved state.
If you only need to know the answer (about who has the file open) periodically, it is easiest to gather a list of the open file names, and ask the network admin to tell you who has them open—such information is maintained on the network and accessible to the admin.
Another potential solution is to add an AutoOpen macro to each workbook that writes a temporary file to disk that contains the name of the person opening the file. The macro would need to not only open the temporary file, but handle error conditions, such as a temporary file that is already open. The temporary file could then be accessed by other macros to see the name that it contains.
An additional place that may hold an answer is the VBNet site. The article at this page contains code that may be adaptable for the desired information:
http://vbnet.mvps.org/index.html?code/network/netfileenum.htm
Note:
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (2492) applies to Microsoft Excel 97, 2000, 2002, and 2003. You can find a version of this tip for the ribbon interface of Excel (Excel 2007 and later) here: Who Has the File Open?.
Program Successfully in Excel! John Walkenbach's name is synonymous with excellence in deciphering complex technical topics. With this comprehensive guide, "Mr. Spreadsheet" shows how to maximize your Excel experience using professional spreadsheet application development tips from his own personal bookshelf. Check out Excel 2013 Power Programming with VBA today!
Workbooks can get rather large rather quickly. If you think your workbook has gotten too big too fast, here are some ...
Discover MoreIf you use Excel's Open dialog box to search for files and you notice that doing so ends up crashing your system, you may ...
Discover MoreIf you don't like the way that Excel exports information you intend to use with other programs, then your best bet is to ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2016-12-01 11:54:05
LinearD
Working for a large company, we have many people jumping into a file at any given time. This became frustrating when I was trying update the workbook connections and not being able to save it. So I wrote two macros; one to log the users details to a text file using ENVIRON$(), and another that loops every minute or so and checks for a file called "force-close.txt" that was stored in another location. I just create the file with the same name when I need to and it forces the user to save a copy and close the file. A little inefficiant, but does the job.
2015-01-27 12:20:29
Wyatt S
I have written a macro that tells you who is in an XLSX file. I wrote a post about it here: https://bizintelsolutions.wordpress.com/2015/01/26/who-is-in-excel-xlsx-file/
-Wyatt
2014-10-16 11:06:18
shantaram
Hi,
How do we know that if anyone else open my excel sheet & close it without saving.
so how do we find out this person ?
Got a version of Excel that uses the menu interface (Excel 97, Excel 2000, Excel 2002, or Excel 2003)? This site is for you! If you use a later version of Excel, visit our ExcelTips site focusing on the ribbon interface.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2021 Sharon Parq Associates, Inc.
Comments