Excel: Opening a Worksheet As Read Only from a Macro

Last reviewed: October 31, 1994
Article ID: Q30824

SUMMARY

The Excel OPEN function has an optional third argument that is not documented in Excel versions 1.06 and earlier. This argument specifies whether or not the file is to be opened as read only.

The following code will open the file "Example" as read only:

   =OPEN("Example",TRUE,TRUE)

The following code will open the file "Example" as not read only:

   =OPEN("Example",TRUE,FALSE)

If the third argument is omitted, Excel will open the document without selecting the read-only option.

The complete format for the OPEN statement is as follows, where "filename" is the name of the file to be opened and "update" is either TRUE (update references to nonresident worksheets) or FALSE (do not update references):

   =OPEN(filename,update,readonly)


KBCategory: kbother
KBSubcategory:

Additional reference words: 1.00 1.02 1.03 1.04 1.06


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: October 31, 1994
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.