【发布时间】:2016-01-27 16:43:44
【问题描述】:
我在我的 excel 电子表格上开发了可以使用以下代码在下拉列表中选择多个项目:
Private Sub Worksheet_Change(ByVal Target As Range)
Dim rngDV As Range
Dim oldVal As String
Dim newVal As String
If Target.Count > 1 Then GoTo exitHandler
On Error Resume Next
Set rngDV = Cells.SpecialCells(xlCellTypeAllValidation)
On Error GoTo exitHandler
If rngDV Is Nothing Then GoTo exitHandler
If Intersect(Target, rngDV) Is Nothing Then
Else
Application.EnableEvents = False
newVal = Target.Value
Application.Undo
oldVal = Target.Value
Target.Value = newVal
If oldVal = "" Then
Else
If newVal = "" Then
Else
Target.Value = oldVal _
& ", " & newVal
End If
End If
End If
exitHandler:
Application.EnableEvents = True
End Sub
但是,我现在想验证下拉列表项只能选择一次的答案。并且最好是,如果用户再次选择该项目,则将其删除。
任何帮助将不胜感激。
【问题讨论】: