I’m designing a database to hold data on objections to a local plan. I will have a table for the objectors, a table for the objections (there can be many per objector) and a table (or filed in the objections table) relating to the plan stage. I will need to take the autonumber ID field from the Objector table and the Autonumber ID field from the Objections table along with the field for the plan stage (text field) and combine them to create a unique number for each objection. Each objector can make many objections but each objection can only be made my one objector so there is a one to many relationship between the two tables.
I believe I need to use a query with some form of concatenated format, any help on this would be appreciated.