Multiple fields in table using same Drop Down list

  • Thread starter Thread starter tR
  • Start date Start date
T

tR

I need to place three field (Topic1, Topic2 and Topic3)
using the same Drop Down list. Is this possible.

Tessa
 
Sounds as though your database hasn't been properly normalized if you've got
that situation.

While you're waiting to correct the design, though, you could always create
a UNION query that forms the source of the drop down. Something like:

SELECT Topic1 FROM MyTable
UNION
SELECT Topic2 FROM MyTable
UNION
SELECT Topic3 FROM MyTable
 
yes
in the dropdown properties
Column Count = 3
Column Heads = (yes/no) depending on your taste
Column widths = 1";.5";1" note: you can use different spacing this
is just an example
Bound Columns =1
 

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