Sub unprotect()
Dim ws As Worksheet, strWB As Workbook
Dim myPath As String, sFile As String
Application.ScreenUpdating = False
myPath = Application.ThisWorkbook.Path & "\"
sFile = Dir(myPath & "*.xlsx")
If sFile = "" Then
MsgBox "No CAF_File found!!!", vbCritical
Exit Sub
End If
Do While sFile <> ""
Set strWB = Workbooks.Open(myPath & sFile)
For Each ws In strWB.Worksheets
ws.Unprotect "ABCD"
Next
strWB.Close True
sFile = Dir
Loop
Set strWB = Nothing
Application.ScreenUpdating = True
End Sub
I do not know password i want to Break that Password & save that file