excel 2007我想把某一列的内容保护起来(不让修改,这一列是自动计算的公式),加上密码,但又

2024-11-23 06:25:37
推荐回答(3个)
回答1:

采用工作表保护方式。

首先将要保护和不需要保护的单元设置好,再实行工作表保护,将“选定锁定的单元格”的勾去掉。

回答2:

  1. 首先选中所有单元格,右键,格式,保护,去掉保护;

  2. 选中该列,右键,格式,保护,勾选保护;

  3. 再按照上个楼层说的工作表保护的操作就可以只保护该列了。

回答3:

先把所有单元格设为不锁定,
再把需要保护的单元格设为锁定,
最后在工作表模块输入如下代码(示例中密码为123456)。
注:1)不要保护工作表。2)要存为xlsm文件。

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Columns.Count = Columns.Count Then Exit Sub
Application.EnableEvents = False
Dim c As Range, strPW As String
For Each c In Target.Cells
If c.Locked Then
strPW = InputBox(c.Address & " is protected. Please input password to change.")
If strPW <> "123456" Then
MsgBox "Wrong Password."
Application.Undo
End If
Exit For
End If
Next
Set c = Nothing
Application.EnableEvents = True
End Sub