I am having trouble creating a data entry page.
The database is the index to a record/CD collection. One table is songs, one is recordings ("sources"), and a third contains links between the two. Each record in songs has a unique ID, LRN. Each record in sources has a unique ID, acqno. Suppose a particular song has LRN 294 and appears on acqno 101, 252, and 747. This would be contained in the links table.
LRN Acqno
294 101
294 252
294 747
etc.
My problem is that I have a data entry form that pulls up an individual record within songs, and then I want to "Add new recording," which is to say, I want to add a new record to the links table that contains the LRN for the CURRENT record in songs and then be prompted to manually enter an acqno (referring to a new source that has just been added).
I seem to have at best a vague idea how to do this part. I have created a macro called AddLink that the "Add new recording" button activates, but all I get are error messages.
Any ideas? Thank you in advance.