Data validation რამდენიმე ვარიანტის ერთდროულად არჩევა

09/22/2020
Khatia Sh.-ის მიერ

private Sub Worksheet_Change(ByVal Target As Range)

'Code by Sumit Bansal from https://trumpexcel.com
' To make mutliple selections in a Drop Down List in Excel

Dim Oldvalue As String
Dim Newvalue As String

On Error GoTo Exitsub
If Target.Address = \"$E$2\" Then
If Target.SpecialCells(xlCellTypeAllValidation) Is Nothing Then
GoTo Exitsub
Else: If Target.Value = \"\" Then GoTo Exitsub Else
Application.EnableEvents = False
Newvalue = Target.Value
Application.Undo
Oldvalue = Target.Value
If Oldvalue = \"\" Then
Target.Value = Newvalue
Else
Target.Value = Oldvalue \u0026 \", \" \u0026 Newvalue
End If
End If
End If
Application.EnableEvents = True
Exitsub:
Application.EnableEvents = True
End Sub

ვიდეოები „Khatia Sh."-ისგან