Adding choices in field

  • Thread starter Thread starter Mary Ann
  • Start date Start date
M

Mary Ann

I am brand new and have several choices in one field, but
need to add more. How do I do this, please?
 
If by "field" you mean a combobox or a listbox, you look at
the .RowSource property.
If the .RowSourceType is set to Value List, then you can
add more choices in the .RowSource using a semicolon as a
delimiter
If the .RowSourceType is set to Table/Query, then you have
to look at the table where the rowsource originates and add
it there.

Hope that helps. Cheers

Chris
 
Back
Top