S
sharad.srivastava
Hi ,
I am creating a validation list using VB macros using the
following code snippet -
--------------------------------------------------------------------------
ov.Validation.Delete
ov.Validation.Add Type:=xlValidateList, Formula1:="1-Poor, improvement
needed ,2-Average,3-Good, Nice work"
----------------------------------------------------------------------------
The validation list that is created shows the following list elements
1-Poor
improvement needed
2-Average
3-Good
Nice work
What I require is that the comma in between the string should not be
taken as a delimiter, that is
the list elements should be
1-Poor, improvement needed
2-Average
3-Good, Nice work
I am unable to find any escape character that can suppress the
delimiting comma.
Is there any way this can be done.
TIA
Sharad
I am creating a validation list using VB macros using the
following code snippet -
--------------------------------------------------------------------------
ov.Validation.Delete
ov.Validation.Add Type:=xlValidateList, Formula1:="1-Poor, improvement
needed ,2-Average,3-Good, Nice work"
----------------------------------------------------------------------------
The validation list that is created shows the following list elements
1-Poor
improvement needed
2-Average
3-Good
Nice work
What I require is that the comma in between the string should not be
taken as a delimiter, that is
the list elements should be
1-Poor, improvement needed
2-Average
3-Good, Nice work
I am unable to find any escape character that can suppress the
delimiting comma.
Is there any way this can be done.
TIA
Sharad