Read Only

  • Thread starter Thread starter Tim
  • Start date Start date
T

Tim

Can someone please help me with the code to check if read
only. I know how to make it read only if it is not, just
not how to check.

Thanks
 
Hi Tim

Try this

If ThisWorkbook.ReadOnly = True Then
MsgBox "ReadOnly"
Else
MsgBox "Not ReadOnly"
End If
 

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

Back
Top