当前位置:首页 » 办公资讯 » 怎样取消excel中被保护的表格

怎样取消excel中被保护的表格

发布时间: 2022-07-04 17:43:50

excel表格被保护了,怎么解锁

能打开,不能复制的话
文件——另存为 找到txt格式的

然后再用excel打开这个txt文件

② 如何解除excel被保护的表格

您好,方法
1、首先打开Excel,打开自己需要的表格,可以看到这份表格已经被保护了。无法进行更改的操作。
2、此时我们无法进行某些操作,上方的很多选项都是灰色的,无法修改。
3、下面我们需要点击上方工具栏中的“审阅”。
4、接着可以看到右侧有“撤销工作表保护”的选项,我们点击一下。
5、最后输入我们保护表格时设置的密码即可解除保护。
6、这时再看上方工具栏里,“撤销工作表保护”的选项已经没有了,说明表格的保护情况已经解除。

③ 怎样取消EXCEL中的宏保护

本文以win7系统Excel018为例进行演示,具体步骤如下所示。

1、启动excel点击工具栏中的开发者工具选项卡。

④ 如何解除excel表格的保护

EXCEL的保护一般有两种,解除保护都需要保护时设置的密码,下面分别简要说明解除保护的方法:


一是文件保护,打开文件的时候需要输入密码,否则无法打开。在输入正确密码打开文件之后,选择菜单文件、另存为,这时候有个选项,里面可以取消密码保护。如下图:

⑤ Excel中 被锁定的单元格如何解锁

方法一:
1.首先,利用Excel快捷键"Ctrl + A"全选所以的单元格,然后,右键选择“设置单元格格式”。
2.在弹出的“单元格格式”中选择“保护”,取消“锁定”前面的钩去掉。
方法二:
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 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分钟,再确定即可完成操作。

⑥ 工作表被保护如何解除

在使用excel表格时,偶尔会遇到别人发给自己被设置保护的工作表,自己无法编辑,那么如何将excel保护工作表的保护解除,操作方法如下。

1、首先打开已经被设置保护的excel表格,可以发现编辑栏无法进行操作。

⑦ excel表格工作表受保护了如何取消

工作表受保护了的话 那你看上面那个是保护在里面输入那个密码就可以取消了呗

⑧ EXCEL 如何对受保护的单元格去掉保护

1.在电脑找到设置了保护的EXCEL表格,点击打开这份EXCEL表格。

⑨ Excel表格受保护怎么取消

摘要 你好!打开Excel,打开被保护表格,此时无法进行某些操作,上方的很多选项都是灰色的,无法修改。点击上方工具栏中的“审阅”。点击右侧有“撤销工作表保护”的选项,点击一下。输入保护表格时设置的密码即可解除保护了。请查看,谢谢!

⑩ 怎样取消excel工作表的保护

一、如何保护工作表

开始之前,必须要来说一说对工作表是如何保护的。这也是最基础的工作。

在实际工作过程中,我们创建的表格,或比较重要的数据都会对它进行加密处理,别人打开它一定要输入密码才能实现。或许还有部分童鞋对此还不太熟悉,下面来说一说。

1、单元格保护

在说明工作表保护之前,首先要明白对于单元格保护的相关道理。打开单元格保护设置的过程也很简单。首先选中所有需要进行锁定或隐藏的单元格区域,然后右键点击鼠标选择设置单元格格式命令,再点击保护标签即可看到弹出对话框。

这里有两个复选项,再简单说明一下,锁定就是锁定单元格的意思,隐藏是对单元格中的公式进行隐藏不显示的意思,根据截图及下面的说明可知,这两个功能的最终实现都是在设置了保护工作表之后才能生效。这里举个例子,比如说当我们设置的函数不想被别人看到的时候,就可以进行设置完成。具体方法是选中带有函数的单元格区域,设置单元格格式,在“隐藏”前面的复选框挑勾,再设置“工作表保护”,那么在编辑栏中就不会显示函数的内容。

2、打开保护工作表

想要进行工作表的保护,首先要知道如何设置,打开工作表就是第一步。打开的方法也是很多的,在平时工作中,我们通常采用以下两种方法,第一种是点击审阅选项卡下的保护功能组,然后就会看到保护工作表的功能按钮,点击就可以了。

热点内容
马路上汽车的噪音在多少分贝 发布:2023-08-31 22:08:23 浏览:1524
应孕棒多少钱一盒 发布:2023-08-31 22:08:21 浏览:1029
标准养老金一年能领多少钱 发布:2023-08-31 22:05:05 浏览:1326
湖北通城接网线多少钱一个月 发布:2023-08-31 21:59:51 浏览:1400
开随车吊车多少钱一个月 发布:2023-08-31 21:55:06 浏览:1172
京东付尾款怎么知道前多少名 发布:2023-08-31 21:52:58 浏览:1481
在学校租铺面一个月要多少钱 发布:2023-08-31 21:52:09 浏览:1618
2寸有多少厘米 发布:2023-08-31 21:50:34 浏览:1247
知道电压如何算一小时多少电 发布:2023-08-31 21:46:20 浏览:1232
金手镯54号圈周长是多少厘米 发布:2023-08-31 21:44:28 浏览:1405