Hello,
I have a combo box that is populated with values from a table. Sometimes a value will have a comma in it, so the box treats the value as two values and lists what was before and after the commas as two separate values.
I'm thinking about having a module do a replace function on all of these values so that they can still have the commas, but not be treated as different values.
For example if the value's name is Dept, I want to do:
Dept = Replace(Dept, ",", "***")
But what should the *** be so I can still have a comma?
Thanks!
I have a combo box that is populated with values from a table. Sometimes a value will have a comma in it, so the box treats the value as two values and lists what was before and after the commas as two separate values.
I'm thinking about having a module do a replace function on all of these values so that they can still have the commas, but not be treated as different values.
For example if the value's name is Dept, I want to do:
Dept = Replace(Dept, ",", "***")
But what should the *** be so I can still have a comma?
Thanks!