rastr
Programmer
- Jun 10, 2009
- 2
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 escape it?
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 escape it?