report and drop down list?

G

Geoff Cox

Hello,

A friend of mine has made an Access (2003) database for a video store,
three linked tables members, videos and bookings. The videos table
has various fields including two (rating and type) which have list
boxes to allow choice from a drop-down box.

A query was constructed from the videos table only and produces
expected results in tabular form. However using the wizard to make a
report of this query has a strange effect. The resulting report
shows all of the options for the two list box fields with the chosen
one blacked out.

How can he get the report to just show the chosen value? And not all
the possibilities with one blacked out?

Thanks

Geoff
 
T

tina

sounds like the rating and type fields, in the videos table, are Lookup
fields. bad idea, see http://home.att.net/~california.db/tips.html#aTip8 for
more information.

recommend your friend get rid of the Lookup fields, changing them to
ordinary fields. and i'd recommend storing the rating and type options in
tables of their own, as

tblRatings
RatingID (primary key, probably Autonumber)
RatingName

tblTypes
TypeID (pk, probably Autonumber)
TypeName

these tables will be used as the RowSource for combobox controls in the form
bound to the videos table. and they should be included in the report's
RecordSource, linked to the videos table, so the report can use the
RatingName field and the TypeName field; the report should not have combobox
controls in it.

hth
 

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

Top