How to code to open a read-only file with a "No" option?

Surii

New Member
Joined
Jul 14, 2011
Messages
9
Hi all,
I have the following code to open the file which has read-only option but my macro code will copy something from another file and paste in this file and save, so I need to choose a "No" to the read-only message when it tries to open the file. Currently, the message still pops up to me and I need to manually click "No"... :confused:

Workbooks.Open FileName:="Q:\Documents\Codes.xlsx", ReadOnly:=False

Thanks in advance for your help! ;)
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
Maybe it would have been easier to post ALL of the code for us to see.
But to make to file read only change FALSE to TRUE
Code:
Workbooks.Open FileName:="Q:\Documents\Codes.xlsx", ReadOnly:=True
 
Upvote 0
By the way, I have solved it. Instead of using ReadOnly:=False, it should be IgnoreReadOnlyRecommended:=True
 
Upvote 0

Forum statistics

Threads
1,215,947
Messages
6,127,867
Members
449,410
Latest member
adunn_23

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top