Open an Excel workbook in Protected View - VBA Method 1 - Parameter Editor

Macro Title:
Enter the procedure title. The title can not have any spaces, instead you can use the _ sign.
Workbook path, name and file type:
Enter the file path, name and file type of the workbook that you want to open
First Comment:
Enter a comment

'

Sub Open_a_Workbook_in_Protected_View()
'Open a Workbook in Protected View

Application.ProtectedViewWindows.Open "C:\Excel\Examples.xlsx"

End Sub