Record Source Format

M

MamaHart

I am using a combo box and inputting the values that I want to select as
follows:
Ph.D.; M.S.; Ph.D., J.D.; Esq.;

When I enter the "Ph.D., J.D.", it is putting a semicolon between the two
selections. I want this to be one complete selection. I have tried
everything I can think of to make the drop down list show "Ph.D., J.D."
Help! Thanks in advance.
 
R

Rick Brandt

MamaHart said:
I am using a combo box and inputting the values that I want to select as
follows:
Ph.D.; M.S.; Ph.D., J.D.; Esq.;

When I enter the "Ph.D., J.D.", it is putting a semicolon between the two
selections. I want this to be one complete selection. I have tried
everything I can think of to make the drop down list show "Ph.D., J.D."
Help! Thanks in advance.

Try...

"Ph.D."; "M.S."; "Ph.D., J.D."; "Esq.";
 
Top