Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Is there any way to include items in a list to be
validated that include commas (delimeter)? |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
You can include commas if the range is drawn from
worksheet cells. For example, suppose C2=Phil, Don C3=Sally,Mary C4=Jim, Jane The following sub creates a Data...Validation...List in the active cell with three items, each including an embedded comma: Sub ValidateMe() ActiveCell.Validation.Add Type:=xlValidateList, Formula1:="=$C$2:$C$4" End Sub |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
data validation invalid in dynamic validation list | Excel Discussion (Misc queries) | |||
data validation invalid in dynamic validation list | Excel Worksheet Functions | |||
Validation (Drop down list vs simple text length validation) | Excel Programming | |||
Validation (Drop down list vs simple text length validation) | Excel Programming | |||
Validation (Drop down list vs simple text length validation) | Excel Programming |