Sunteți pe pagina 1din 6

Advanced Excel Training

Call 9718145988
Home Training Syllabus About Contact

Get Free Updates Excel Password Remover


15
email address Have you ever forgotten your Excel workbook or sheet password?
Use Excel Bee Password Remover Macro or download free Add-In Like
Subscribe
tool and remove password from any Excel Sheet in Excel 2013,
156
2010, 2007 and 2003 without software.
Like 1.7K Follow 40
Excel Password Remover Macro Will:
Remove Excel password and let you edit and deleting the content in 26
Excel sheet
Remove password in few seconds
Work with all excel versions - MS Excel 2013, 2010, 2007 and 2003
Excel Tutorial Topics

All Excel Shortcuts


Download Excel Bee free Excel Password Remover Add-In for Excel 2013, 2010, 2007 and 2003. (Click here to
view how to add Add-In to Excel)
Writing Excel Function

Excel SUM Function

Excel COUNT and COUNTA Functions

Excel LENGTH of Formula (LEN)

Excel TRIM Function

Excel RIGHT, LEFT and MID Functions

Excel CONCATENATE
Excel Password Remover Macro
Excel VLOOKUP
Below is the code for deleting password from Excel Sheets. You need to just copy and paste below code into your
Excel IF ELSE
open in browser PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
Excel IF ELSE
Excel VBA Code window. Read instruction for using Macro code in Excel at the bottom.
Creating Drop Down List in Excel

Creating A Simple Macro and Add-In


Public Sub ExcelPasswordRemover()
Assigning Macro to Button in Excel Dim Mess As String, Header As String
Dim Credit As String
Installing an Add-In- 2010 / 2007 / 2013 Dim RepBack As String, AllClear As String

Creating VBA Form for Data Entry Dim PWord1 As String


Dim ShTag As Boolean, WinTag As Boolean
Dim w1 As Worksheet, w2 As Worksheet
Free Excel Bee Macro & Add-
Ins Dim i As Integer, j As Integer, k As Integer, l As Integer
Dim m As Integer, n As Integer, i1 As Integer, i2 As Integer
Merge Excel Sheets 2010 / 2007 / 2013 Dim i3 As Integer, i4 As Integer, i5 As Integer, i6 As Integer
Application.ScreenUpdating = False
Excel Password Remover Macro
Header = "Excel Password Remover Alert"
Creating Backup Copy of Workbook Credit = vbNewLine & vbNewLine & "Learn Excel with:- EXCELBEE.COM"
RepBack = vbNewLine & vbNewLine & "Thank you for using Excel Bee Free Stuffs"
Merge CSV Files Without Any Tool
With ActiveWorkbook
WinTag = .ProtectStructure Or .ProtectWindows
End With
ShTag = False
For Each w1 In Worksheets
ShTag = ShTag Or w1.ProtectContents
Next w1
If Not ShTag And Not WinTag Then
Mess = vbNewLine & "There were no passwords on sheets, or workbook structure or windows." & vbNewLine &
Credit
MsgBox Mess, vbInformation, Header
Exit Sub
End If
Mess = "After pressing OK button this will take some time." & _
vbNewLine & "Hit OK and hold back while password(s) are removed from your sheet!" & vbNewLine &
vbNewLine & _
Credit
MsgBox Mess, vbInformation, Header
open in browser PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
If Not WinTag Then
Mess = "There was no protection to workbook structure " & _
"or windows." & vbNewLine & _
"Proceeding to unprotect sheets." & _
Credit
MsgBox Mess, vbInformation, Header
Else
On Error Resume Next
Do
For i = 65 To 66: For j = 65 To 66: For k = 65 To 66
For l = 65 To 66: For m = 65 To 66: For i1 = 65 To 66
For i2 = 65 To 66: For i3 = 65 To 66: For i4 = 65 To 66
For i5 = 65 To 66: For i6 = 65 To 66: For n = 32 To 126
With ActiveWorkbook
.Unprotect Chr(i) & Chr(j) & Chr(k) & _
Chr(l) & Chr(m) & Chr(i1) & Chr(i2) & _
Chr(i3) & Chr(i4) & Chr(i5) & Chr(i6) & Chr(n)
If .ProtectStructure = False And _
.ProtectWindows = False Then
PWord1 = Chr(i) & Chr(j) & Chr(k) & Chr(l) & _
Chr(m) & Chr(i1) & Chr(i2) & Chr(i3) & _
Chr(i4) & Chr(i5) & Chr(i6) & Chr(n)
Mess = "You had a Worksheet Structure or " & vbNewLine & _
Credit
MsgBox Mess, vbInformation, Header
Exit Do
End If
End With
Next: Next: Next: Next: Next: Next
Next: Next: Next: Next: Next: Next
Loop Until True
On Error GoTo 0
End If
If WinTag And Not ShTag Then
Mess = "Only structure / windows protected with " & vbNewLine & _
open in browser PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
"the password that was just found." & vbNewLine & _
AllClear & Credit & RepBack
MsgBox Mess, vbInformation, Header
Exit Sub
End If
On Error Resume Next
For Each w1 In Worksheets
w1.Unprotect PWord1
Next w1
On Error GoTo 0
ShTag = False
For Each w1 In Worksheets
ShTag = ShTag Or w1.ProtectContents
Next w1
If Not ShTag Then
Mess = AllClear & Credit & RepBack
MsgBox Mess, vbInformation, Header
Exit Sub
End If
For Each w1 In Worksheets
With w1
If .ProtectContents Then
On Error Resume Next
Do
For i = 65 To 66: For j = 65 To 66: For k = 65 To 66
For l = 65 To 66: For m = 65 To 66: For i1 = 65 To 66
For i2 = 65 To 66: For i3 = 65 To 66: For i4 = 65 To 66
For i5 = 65 To 66: For i6 = 65 To 66: For n = 32 To 126
.Unprotect Chr(i) & Chr(j) & Chr(k) & _
Chr(l) & Chr(m) & Chr(i1) & Chr(i2) & Chr(i3) & _
Chr(i4) & Chr(i5) & Chr(i6) & Chr(n)
If Not .ProtectContents Then
PWord1 = Chr(i) & Chr(j) & Chr(k) & Chr(l) & _
Chr(m) & Chr(i1) & Chr(i2) & Chr(i3) & _
Chr(i4) & Chr(i5) & Chr(i6) & Chr(n)
open in browser PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
Mess = "You had a Worksheet password set now removed." & _
Credit
MsgBox Mess, vbInformation, Header
For Each w2 In Worksheets
w2.Unprotect PWord1
Next w2
Exit Do
End If
Next: Next: Next: Next: Next: Next
Next: Next: Next: Next: Next: Next
Loop Until True
On Error GoTo 0
End If
End With
Next w1
Mess = AllClear & Credit & RepBack
MsgBox Mess, vbInformation, Header
End Sub

How to Remove Excel Password?


Step #1: Press Excel Short Cut key ALT + F11 to open VBA Code Window (Refer snapshot below)

open in browser PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
Step #2: Paste above code here in the blank code window as it is and hit play button.

Follow the instructions and your password will be removed in few seconds. Please remember that data is protected
with password for a reason.

You can report bug to us through contact form.

Privacy Policy Sitemap XML 2015 Excel Bee. All Rights Reserved.

open in browser PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com

S-ar putea să vă placă și