我制作了一个电子表格,用户可以将邮政编码和数量输入2个单元格,我还有其他单元格进行计算并显示结果。
我添加了一些VBA以防止任何人删除行和列,但我想阻止删除范围内的任何单元格,但也允许用户对某些单元格进行更改,但也阻止编辑具有公式的单元格
在单元格E4
中,用户可以输入邮政编码。在E6
中,用户可以输入数量。这些可以编辑但不能删除。 E8:E9
和E11:E14
都是下拉列表(验证),用于保存列表中的数据。这些可以使用下拉菜单进行更改,但不能删除。
L10:L14
,L16
,L23:L27
,L29
,L30:L33
都可以编辑数据但不会删除。
VBA对此有什么看法?我想它会使用Worksheet_Change() event
。
答案 0 :(得分:5)
这是你在尝试什么?用户可以修改单元格E4
和E6
,但不能将其留空。我也假设手前的细胞不是空的。
Option Explicit
Private Sub Worksheet_Change(ByVal Target As Range)
On Error GoTo Whoa
Application.EnableEvents = False
If Not Intersect(Target, Range("E4")) Is Nothing Then
If Len(Trim(Range("E4").Value)) = 0 Then Application.Undo
ElseIf Not Intersect(Target, Range("E6")) Is Nothing Then
If Len(Trim(Range("E6").Value)) = 0 Then Application.Undo
End If
LetsContinue:
Application.EnableEvents = True
Exit Sub
Whoa:
MsgBox Err.Description
Resume LetsContinue
End Sub
<强>后续强>
谢谢,这就是我想要做的。其他范围怎么样?它只是IF的负载情况,还是我们可以使用CASE并循环? - AdRock 2分钟前
根据情况添加/删除下面的单元格地址。
Option Explicit
Private Sub Worksheet_Change(ByVal Target As Range)
On Error GoTo Whoa
Application.EnableEvents = False
If Not Intersect(Target, Range("E4,E6,E8:E9,E11:E14,L10:L14,L16,L23:L27,L29,L30:L33")) Is Nothing Then
If Len(Trim(Target.Value)) = 0 Then Application.Undo
End If
LetsContinue:
Application.EnableEvents = True
Exit Sub
Whoa:
MsgBox Err.Description
Resume LetsContinue
End Sub
答案 1 :(得分:1)
部分正确,但更改后会触发Worksheet_Change(),因此删除后。 我要做的是有一个隐藏的工作表来存储用户输入的值,然后你可以在Worksheet_Change()中检查新值是否为空(删除)。
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$E$4" Then
' check the previous value on the hidden sheet here, if changed, then save it, if empty, then restore it
End If
End Sub