如何撤销工作表保护

如题所述

问题一:EXCEL工作表保护密码忘记了,如何撤消工作表保护? 好简单的方法:
1.打开保护密码的Excel文件
2.复制工作表内容
3.新建工作表,在新工作表上点击鼠标右键――“选择性粘贴” 注意是选择性粘贴――弹出对话框,在粘贴中选择全部――确定。最后一步重要
4.点击鼠标右键――“选择性粘贴” ――弹出对话框,在粘贴选项中选择列宽――确定。
完成上面就是新建可以编写的工作表。
希望能帮到你,我急需悬赏金
不是保护工作簿吧?

问题二:EXCEL的怎么撤销工作表保护 我有一种方法可以不知道密码也可以.就是把内容复制到一个新的表格中就可以了,我就经常这样做,因为别的公司给我们的价格表老是保护,我就复制到一个新的文件里就能编辑了.
这个方法只对EXCEL有效,因为他虽然保护了不能修改但可以看到内容,可以复制.对WORD就不行了.WORD有了密码就看不到内容了.
看不到内容不应该啊,EXCEL应该能看到内容啊,照楼主这么说一打文件就让输密码了.EXCEL没有这功能啊

问题三:EXCEL表格自动受保护,怎样撤消工作表保护 5分 1、打开要保护的excel。
2、选择“审阅”选项,可以在该页面的工具栏上看到有一个“保护工作表”的工具栏。
3、点击该按钮,打开“保护工作表”对话框。在该对话框中,需要设定一个取消保护工作表时的密码,以及保护工作表后,允许进行的操作,将允许的操作前面的复选框选中,即点击打上“√。
4、点击“确定”按钮,弹出确定密码的对话框,输入“保护工作表”页面中设定的密码,然后点击确定。
5、此时,如果再在工作表页面中输入数据或修改数据时,会弹出该工作表被保护的提示信息。
6、当想编辑该文档的时候,执行取消保护工作表操作就可以了。和设定保护工作表时的操作类似,打开要编辑的excel文档,选择审阅,可以看到原来“保护工作表”的工具变为“撤销保护工作表”的工具。
7、点击“撤销保护工作表”按钮,会弹出“撤销保护工作表”对话框,在编辑框中输入设定“保护工作表”时的密码,然后点击“确定”按钮。
8、回到excel工作表编辑区,发现可以编辑文档了

问题四:EXCEL工作表保护密码忘记了,如何撤消工作表保护? 按下面步骤操作,
如果不会发邮件给我吧 [email protected]
1\打开文件
2\工具---宏----录制新宏---输入名字如:aa
3\停止录制(这样得到一个空宏)
4\工具---宏----宏,选aa,点编辑按钮
5\删除窗口中的所有字符(只有几个),替换为下面的内容:(你复制吧)
Option Explicit
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 th......>>

问题五:EXCEL工作表保护密码忘记了,如何撤消工作表保护?急~~~ 可以到网上找一下破解代码,按方式操作。如果不行,可以试试。

问题六:如何把excel表的保护撤销? 在工作表的标签上点击鼠标右键――查看代码――把下面代码粘贴上,然后按F5
Sub PasswordBreaker()
'破解工作表保护密码
Dim i As Integer, j As Integer, k As Integer
Dim l As Integer, m As Integer, n As Integer
Dim i1 As Integer, i2 As Integer, i3 As Integer
Dim i4 As Integer, i5 As Integer, i6 As Integer
On Error Resume Next
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
ActiveSheet.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 ActiveSheet.ProtectContents = False Then
MsgBox One usable password is & Chr(i) & Chr(j) & _
Chr(k) & Chr(l) & Chr(m) & Chr(i1) & Chr(i2) & _
Chr(i3) & Chr(i4) & Chr(i5) & Chr(i6) & Chr(n)
ActiveWorkbook.Sheets(1).Select
Range(a1).FormulaR1C1 = Chr(i) & Chr(j) & _
Chr(k) & Chr(l) & Chr(m) & Chr(i1) & Chr(i2) & _
Chr(i3) & Chr(i4) & Chr(i5) & Chr(i6) & Chr(n)
Exit Sub
End If
Next: Next: Next: Next: Next: Next
Next: Next: Next: Next: Next: Next
End Sub

问题七:excel 如何撤销工作薄保护,忘记密码了? 破解工作表保护密码
去除Excel工作表保护密码,很有用的方法
操作步骤:1. 打开需要破解密码的Excel;2. 按Alt+F11进入VBA编辑界面;3. 插入 -- 模块(Module);4. 在右边Module的空白编辑区域,复制粘贴下面所有内容5. F5,运行该VBA命令;
---------------------(下面的内容在第四步复制进去)-------------------------
Option ExplicitPublic SubAllInternalPasswords()' 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 passwordsConst DBLSPACE As String = vbNewLine & vbNewLineConst AUTHORS As String = DBLSPACE & vbNewLine & _Adapted from Bob McCormick base code by & _Norman Harker and JE McGimpseyConst HEADER As String = AllInternalPasswords User MessageConst VERSION As String = DBLSPACE & Version 1.1.1 2003-Apr-04Const 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 & andalso & _DBLSPACE & BACKUP!, BACKUP!!, BACKUP!!! & _DBLSPACE & Also, remember that the password was &q......>>

问题八:Excel撤销工作表保护的密码是什么啊 什么意思啊?虚心请教 假如你有一个EXCEL的工作表,此工作表设置了密码,那么你每次打开的话,你都要输入密码才可以打开。
撤销工作表保护的密码也就是将你那个有密码的工作表取消密码保护,也就是在工作表:工具---选择----安全性。将设置的密码全部清除完,下次你打开就不用输密码了,也就是撤销工作盯保护的密码。

问题九:如何撤销excel表格所有单元格的保护,? 在excel中取消工作表的保护命令的方法:
1.打开excel,运行视图―宏―录制新宏―输入宏名如:aa(aa是可随意输入)。
2.停止录制,这样得到一个空宏。
3.同样视图―宏―查看宏―选aa(aa为之前新建的宏)―点击编辑按钮。
4.删除窗口中的所有字符,复制下面的内容粘贴。
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 ......>>

问题十:在excel中如何取消工作表的保护命令 在excel中取消工作表的保护命令的方法:
1.打开excel,运行视图―宏―录制新宏―输入宏名如:aa(aa是可随意输入)。
2.停止录制,这样得到一个空宏。
3.同样视图―宏―查看宏―选aa(aa为之前新建的宏)―点击编辑按钮。
4.删除窗口中的所有字符,复制下面的内容粘贴。
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 s......>>
温馨提示:答案为网友推荐,仅供参考
相似回答