is it possible to create a drop-down menu in a text field?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

i have a text field for Client Type.

i would like to limit the user's entry by creating a drop-down menu with the
appropriate and required selections.

if this is possible, how?

thanks
 
i have a text field for Client Type.

i would like to limit the user's entry by creating a drop-down menu with the
appropriate and required selections.

if this is possible, how?

thanks

What are the appropriate selections?

I'll guess it's something like "East", "North" ,"West", or "South".

Add a Combo box to the form.
Set it's RowSourceType to Value List.
Set it's Rowsource to:
"East", "North","West","South"

Set it's bound column to 1.
Column widths to 1".
Set the combo box control source to the text field.

Select an item in the list and it will be saved to the text field.
 
i have a text field for Client Type.

i would like to limit the user's entry by creating a drop-down menu with the
appropriate and required selections.

if this is possible, how?

Sure. A combo box wouldn't be much use if you couldn't!

Create a Table with the "appropriate and required selections" for
client type. Use it - or, better, a query sorting it alphabetically -
as the row source for the combo box (i.e. when the wizard asks where
the data will come from select Table, and then choose this table).

John W. Vinson[MVP]
 
Hi, thanks for your answer below, I was wondering how to do this in a table?
ie to make a drop down menu with options appear for a field in a table.
Thanks for any help you can give.
 
Hi, thanks for your answer below, I was wondering how to do this in a table?
ie to make a drop down menu with options appear for a field in a table.
Thanks for any help you can give.

Tables are used to STORE data, not for direct data entry or data
manipulation.
Using a combo box (in a table it would be called a 'lookup' field) in
a table field will lead to unwanted side effects, because what you
will see is not what will be stored.
It's always best to use a form for data entry.
On a form you can use a combo box.
 
Thanks but I'm wanting to use the table to enter data directly. Actually I
created the drop down before and can't remember how to do it, though I've
been trying like crazy to retrace my steps. Do you know how to do it?
 
Thanks but I'm wanting to use the table to enter data directly. Actually I
created the drop down before and can't remember how to do it, though I've
been trying like crazy to retrace my steps. Do you know how to do it?

Add a new field to the table.
Click on the LookUp tab in the lower panel.
Select Combo Box from the Drop-down.
Set the combo properties as needed,

Good luck.
 
Dear,

Replies to this question, was very much helpful to me, as I had successfully
created a dropdown list.

Thanks a lot

Rohinkumar
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top