采用工作表保护方式。
首先将要保护和不需要保护的单元设置好,再实行工作表保护,将“选定锁定的单元格”的勾去掉。
首先选中所有单元格,右键,格式,保护,去掉保护;
选中该列,右键,格式,保护,勾选保护;
再按照上个楼层说的工作表保护的操作就可以只保护该列了。
先把所有单元格设为不锁定,
再把需要保护的单元格设为锁定,
最后在工作表模块输入如下代码(示例中密码为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