I have a database to track song usage for my youth group at church. Every week we play five songs. The information I'd like to store is the five songs we play as well as where we played them and what the event was in a history log so I can look back at what we've performed, where, etc.
I have a table called 'Songs' that has all the song information in it (title, chords, key, author, copyright info, etc.) Within this table is a yes/no column called 'Selected'. When I pick the songs for the set in a given week, 'Selected' is set to 'Yes'.
Using 'Selected' as a basis for the append query, I append that information to a table called 'History'. The deal is that I'd like to create a form that will have other text boxes that I can enter more information about the event, such as the information I mentioned at the top of this note.
My question is, how do I append the five song ID's to the History table as well as have the event information duplicated (or propagated, if you will) to each 'History' table entry? For example, in the form I'd enter a location, a date, and event information into the text boxes. When I perform the append query, the five songs that are selected are appended along with the information in the form to the 'History' table.
Am I making sense? If you need clarification please let me know.
Thanks in advance!
Onwards,
Q-
I have a table called 'Songs' that has all the song information in it (title, chords, key, author, copyright info, etc.) Within this table is a yes/no column called 'Selected'. When I pick the songs for the set in a given week, 'Selected' is set to 'Yes'.
Using 'Selected' as a basis for the append query, I append that information to a table called 'History'. The deal is that I'd like to create a form that will have other text boxes that I can enter more information about the event, such as the information I mentioned at the top of this note.
My question is, how do I append the five song ID's to the History table as well as have the event information duplicated (or propagated, if you will) to each 'History' table entry? For example, in the form I'd enter a location, a date, and event information into the text boxes. When I perform the append query, the five songs that are selected are appended along with the information in the form to the 'History' table.
Am I making sense? If you need clarification please let me know.
Thanks in advance!
Onwards,
Q-