Open a protected Word template

Paulanski

New Member
Joined
Mar 5, 2017
Messages
6
Hi, I have an Excel macro which opens a Word template and fills in fields from the Excel data.

The code I have used to open the template is as follows:

VBA Code:
' open custom Template
 Set wrdDoc = wrdApp.Documents.Add(Template:="G:\filepath\Coordination.docx")

It took me a long time to successfully find a way to open/add data, so I would like to preserve this method if possible. It is also working well.

Now I would like to protect the Word document as it is getting corrupted by having multiple users. I tried to add a password but was not successful with the following:

VBA Code:
' open custom Template
 Set wrdDoc = wrdApp.Documents.Add(Template:="G:\filepath\Coordination.docx", PassowrdDocument:="password")

Any advice on how to automate the password entry when opening the Word doc?

Many thanks!

Paul
 

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.

Forum statistics

Threads
1,214,908
Messages
6,122,187
Members
449,071
Latest member
cdnMech

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