Hello, I don't know much about Access, so I would first of all, like to apologize if my question is silly and obvious, but I have been trying for some time and can't figure it out.
I am creating a database to keep track of a set of art pieces. Each piece has a series of attributes, one of which is style, a piece can have more than one style.
I have created one table with a series of fields for each piece (name, author, etc.) which has a field called PieceID as the primary key and another table with the different styles which only has two fields, StyleID (Primary key) and StyleName.
I have created a third junction table which has two primary keys, PieceID and StyleID to link the two tables. The two tables are linked one-to-many to this table via their respective primary keys.
I wanted to have a form to introduce and edit all the info for the pieces and when it comes to choosing the style be able to choose from the list of existing styles. I thought of using a form with the main table fields and then a subform with the different styles for the piece. The problem is I wanted this subform to only have one combobox which would use the list of existing Styles as its source, so I can choose StyleName not StyleID . I can't figure out how to do this and get it to work.
Any help would be greatly appreciated.