Simple Question?

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

Guest

How do I make the following list box (or drop down box) list several of the
two letter abbreviations into a single field that will be separated by a
comma?

Example:
ID LUC Description
1 AG Agriculture
2 FS Forestry
3 HM Hydromodification
4 MB Marinas & Boating
5 UC Urban / Construction

AG, FS, HM, MB (or any combination)
 
How do I make the following list box (or drop down box) list several of the
two letter abbreviations into a single field that will be separated by a
comma?

Example:
ID LUC Description
1 AG Agriculture
2 FS Forestry
3 HM Hydromodification
4 MB Marinas & Boating
5 UC Urban / Construction

AG, FS, HM, MB (or any combination)

Use a Combo box (or a List Box with it's MultiSelect property set to
None) .....
Code control's the AfterUpdate event:

[FieldName] = [FieldNamel] & Me.ComboBox.Column(1) & ", "

where [FieldName] is a control bound to a field in the table.
 

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

Similar Threads


Back
Top