Advertisement

How to Add Tick and Cross symbols into Drop Down List in Excel

How to Add Tick and Cross symbols into Drop Down List in Excel In this video, you will learn How to add Tick and Cross symbols in Excel Drop Down List. Excle Drop Down List with Symbols.

VBA Code 1
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, Range("F1:F10")) Is Nothing Then Exit Sub
If Target.Value = "Tick" Then
Target.Value = "P"
ElseIf Target.Value = "Cross" Then
Target.Value = O"
End If
End Sub

VBA Code 2
Sub usingSymbols()
Dim xRg As Range
Set xRg = Range("F1:F10")
xRg.Font.Name = "Wingdings 2"
xRg.Validation.Add xlValidateList, , , "Tick,Cross"
End Sub


Subscribe Our Channel:





and Facebook page:


excel tutorial,excel complete course,excel advance course,excel functions in urdu,How to add tick and cross symbols in drop down list in excel,tick and cross symblos in excel,

Post a Comment

0 Comments