Ignoring a read only in a different document

Urkrabb

New Member
Joined
Jul 6, 2017
Messages
6
Hello,
I have two excel documents that I use for project groups to document positive and negative experiences. The first document is a template for the project groups where they make their own copy and use it to enter information through a user form that stores the data on the document as well as the second document. The second document functions as a library where all the information from the different projects gather.
Since the first document enters data into the second I haven’t been able to make the second document read only. This is a bit risky since the users might make changes or loose data.

Is there any way that I can make the second document read only but still allow the first document to add information to it?
I am very new to VBA so please imagine that you are speaking to a very slow child. :)

I'm thankfull for all the help I can get.
 

Excel Facts

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December
I was able to work around the problem :) so no need for you guys to waste time on solving this for my sake. If someone else encounters a similar problem i used:
Sub .....()
Activesheet.Unprotect
....my code....
End With
Activesheet.Protect AllowFiltering:=True
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,839
Messages
6,127,204
Members
449,368
Latest member
JayHo

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