In a previous thread, to make a dropdown list in Excel, someone said to use:
Public Sub CreateList()
With ActiveCell
.Validation.Delete
.Validation.Add xlValidateList, , , "Value1,Value2,Value3,Value4"
End With
End Sub
I want one of my values to contain a comma.
Is there a way to...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.