Remove read only prompt

G

Guest

When a spreadsheet is open by a user and a second user wishes to open it, is
it possible to remove the read only prompt that appears in the box that says
Read Only, Notify, Cancel? We wish it to be only viewed in any mode by one
exclusive user at a time but I cannot find an option to do this. I've tried
all the security settings etc.
 
G

Govind

Hi,

When that file is open, go to File->Save as. In the 'save as window'
click on Tools->General options and uncheck 'Read-only recommended' and
click on 'OK' and save the file with the same name & location.

Regards

Govind
 
D

Dave Peterson

I think that this prompt pops up before the workbook is opened--it's windows &
excel working together to see that the file is in use.

I don't think you can change this behavior.

You could let the other user open it and close it if the file was opened in
readonly mode, but sometimes it's very useful to be able to open in readonly
mode.

I wouldn't do this, but if you want, you can create a macro that does this
check:

Option Explicit
Sub auto_open()

With ThisWorkbook
If .ReadOnly = True Then
MsgBox "Opened in ReadOnly Mode--Closing!"
.close savechanges:=false
End If
End With

End Sub

(but if macros are disabled, then this won't help either.)

If you're new to macros, you may want to read David McRitchie's intro at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top