当前位置:首页 » 表格制作 » 表格怎样取消密码保护
扩展阅读
滑膜炎可以的运动 2024-09-23 02:00:32
什么软件可以复制qq 2024-09-23 01:55:30

表格怎样取消密码保护

发布时间: 2022-01-15 02:13:42

⑴ EXCEL 怎么取消密码保护

1、双击打开一个设置了读、写保护,工作表保护,工作薄保护的excel文件,这时会要求输入密码,我们依次输入“读权限”密码和“写权限”密码后,打开文件。

⑵ excel表格被保护该怎么取消不知道密码

使用以下步骤进行破解被保护的工作表:

所需材料:记事本、Excel。

一、首先点击被保存的工作薄,按F2重命名,格式改为RAR。

⑶ excel怎么取消密码保护

方法一:取消打开密码
1、将表格文件打开在Excel中,然后在“密码”中输入打开文件的密码,点击“确定”打开文件。

2、接着点击页面右上角的“文件”,然后点击“信息”栏的 “保护工作簿”中的倒三角图标。点击“用密码进行加密”,然后在“加密文档”界面中清除密码,点击“确定”就可以了。

3、接着点击页面中的“保存”就可以了,这样Excel表格的打开密码就取消了。

方法二:取消编辑密码
1、将表格文件打开在Excel中,点击更改表格中的数据,会出现一个提示框,说明表格设置了工作表保护密码,表格数据只能被查阅,不能被更改。

2、然后在“审阅”界面中,点击“撤消工作表保护”。在弹出界面中清除密码,点击“确定”。这样我们就可以编辑表格中的数据了。

3、点击页面中的“文件”,然后点击保存就可以了。下次可以直接编辑表格中的数据。

以上就是取消Excel密码保护的方法,大家可以根据自己的Excel文件密码设置情况选择适合自己的方法。

⑷ wps表格没有密码怎么取消保护

点击“文件/WPS表格”→点击“文件信息”→点击“文件加密”→把之前所设置的密码全部删除→点击“确定”→关闭表格,点保存就OK啦

⑸ Excel 表格怎么去掉保护密码

Excel工作表保护密码破解方法

一个excel文档要修改其中的内容,可是被保护了,找了一堆破解软件,要么需要购买,要么是破解打开密码的,非保护密码。好不容易找到解决方案!
excel保护密码破解(绝对经典) 如果你的Excel文件设置了保护密码而遗忘了,那么请依照下面的步骤来操作,也许会有奇迹出现.不需要多么高难度的操作和专业的软件支持.简单.方便.费时一般最多两分钟. (建议:操作前把原文件COPY一份) 方法:

1打开文件
2工具---宏----录制新宏---输入名字如:aa
3停止录制(这样得到一个空宏)
4工具---宏----宏,选aa,点编辑按钮
5删除窗口中的所有字符(只有几个),替换为下面的内容:

Public Sub AllInternalPasswords()
' Breaks worksheet and workbook structure passwords. Bob McCormick
' probably originator of base code algorithm modified for coverage
' of workbook structure / windows passwords and for multiple passwords
'
' Norman Harker and JE McGimpsey 27-Dec-2002 (Version 1.1)
' Modified 2003-Apr-04 by JEM: All msgs to constants, and
' eliminate one Exit Sub (Version 1.1.1)
' Reveals hashed passwords NOT original passwords
Const DBLSPACE As String = vbNewLine & vbNewLine
Const AUTHORS As String = DBLSPACE & vbNewLine & _
"Adapted from Bob McCormick base code by" & _
"Norman Harker and JE McGimpsey"
Const HEADER As String = "AllInternalPasswords User Message"
Const VERSION As String = DBLSPACE & "Version 1.1.1 2003-Apr-04"
Const REPBACK As String = DBLSPACE & "Please report failure " & _
"to the microsoft.public.excel.programming newsgroup."
Const ALLCLEAR As String = DBLSPACE & "The workbook should " & _
"now be free of all password protection, so make sure you:" & _
DBLSPACE & "SAVE IT NOW!" & DBLSPACE & "and also" & _
DBLSPACE & "BACKUP!, BACKUP!!, BACKUP!!!" & _
DBLSPACE & "Also, remember that the password was " & _
"put there for a reason. Don't stuff up crucial formulas " & _
"or data." & DBLSPACE & "Access and use of some data " & _
"may be an offense. If in doubt, don't."
Const MSGNOPWORDS1 As String = "There were no passwords on " & _
"sheets, or workbook structure or windows." & AUTHORS & VERSION
Const MSGNOPWORDS2 As String = "There was no protection to " & _
"workbook structure or windows." & DBLSPACE & _
"Proceeding to unprotect sheets." & AUTHORS & VERSION
Const MSGTAKETIME As String = "After pressing OK button this " & _
"will take some time." & DBLSPACE & "Amount of time " & _
"depends on how many different passwords, the " & _
"passwords, and your computer's specification." & DBLSPACE & _
"Just be patient! Make me a coffee!" & AUTHORS & VERSION
Const MSGPWORDFOUND1 As String = "You had a Worksheet " & _
"Structure or Windows Password set." & DBLSPACE & _
"The password found was: " & DBLSPACE & "$$" & DBLSPACE & _
"Note it down for potential future use in other workbooks by " & _
"the same person who set this password." & DBLSPACE & _
"Now to check and clear other passwords." & AUTHORS & VERSION
Const MSGPWORDFOUND2 As String = "You had a Worksheet " & _
"password set." & DBLSPACE & "The password found was: " & _
DBLSPACE & "$$" & DBLSPACE & "Note it down for potential " & _
"future use in other workbooks by same person who " & _
"set this password." & DBLSPACE & "Now to check and clear " & _
"other passwords." & AUTHORS & VERSION
Const MSGONLYONE As String = "Only structure / windows " & _
"protected with the password that was just found." & _
ALLCLEAR & AUTHORS & VERSION & REPBACK
Dim w1 As Worksheet, w2 As Worksheet
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
Dim i3 As Integer, i4 As Integer, i5 As Integer, i6 As Integer
Dim PWord1 As String
Dim ShTag As Boolean, WinTag As Boolean
Application.ScreenUpdating = False
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
MsgBox MSGNOPWORDS1, vbInformation, HEADER
Exit Sub
End If
MsgBox MSGTAKETIME, vbInformation, HEADER
If Not WinTag Then
MsgBox MSGNOPWORDS2, vbInformation, HEADER
Else
On Error Resume Next
Do 'mmy do loop
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)
MsgBox Application.Substitute(MSGPWORDFOUND1, _
"$$", PWord1), vbInformation, HEADER
Exit Do 'Bypass all for...nexts
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
MsgBox MSGONLYONE, vbInformation, HEADER
Exit Sub
End If
On Error Resume Next
For Each w1 In Worksheets
'Attempt clearance with PWord1
w1.Unprotect PWord1
Next w1
On Error GoTo 0
ShTag = False
For Each w1 In Worksheets
'Checks for all clear ShTag triggered to 1 if not.
ShTag = ShTag Or w1.ProtectContents
Next w1
If ShTag Then
For Each w1 In Worksheets
With w1
If .ProtectContents Then
On Error Resume Next
Do 'Dummy do loop
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)
MsgBox Application.Substitute(MSGPWORDFOUND2, _
"$$", PWord1), vbInformation, HEADER
'leverage finding Pword by trying on other sheets
For Each w2 In Worksheets
w2.Unprotect PWord1
Next w2
Exit Do 'Bypass all for...nexts
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
End If
MsgBox ALLCLEAR & AUTHORS & VERSION & REPBACK, vbInformation, HEADER
End Sub

6关闭编辑窗口
7工具---宏-----宏,选AllInternalPasswords,运行,确定两次,等2分钟,再确定.OK,没有密码了!!

⑹ 怎样取消EXCEL表格的密码保护

如果可以用只读方式打开这个文件,那么只要打开后“另存为”一个就行了,另存后的文件就没有密码了。

⑺ 电子表格怎么取消密码保护

一般的店电子表格在审阅里头有电子表格保护。你说正确的密码就可以取消密码保护了。但是如果你不知道正确的密码,那是没法取消密码保护的。

⑻ excel表格密码怎么取消

具体操作步骤如下:

一、打开excel,先录入密码,确定打开要取消密码的excel文件。

⑼ WPS表格怎样取消密码急

一、首先,打开WPS程序,打开要取消密码的表格文件。

⑽ 如何去掉Excel表格中的密码保护

首先你有没有这个EXCEL的文件密码
有的话进行如下操作:
1、打开该文件
2、选择“文件”中的“另存为”
3、选择跳出对话框中的“工具”
4、选择“常规选项”
5、将密码框清空
6、保存,如提示是否覆盖,选“是”