Confussed

J

John Kirkman

Hello All,

I am trying to record attendance for an event and have set up the following
tables, so for example we would have lunch, dinner each at different prices
for each event.

tblEvent
EventNo-(Autonumber)
EventDate

tblEventDetails
EventDetailNo(Autonumber)
EventNo (Foreign Key)
Amount

Now to record the resiverations I have create the following tables. When I
make a "Reservation" I populate the tblReserveDetail by code with as many
records as there are Event Details for that event.

tblReserve
ReserveNo (Autonumber)
MemberNo
SpecialNeeds
etc.
tblReserveDetail
ReserveNo (Foreign Key)
EventDetailNo (Foreign Key to tblEventDetail)
NumberEating

What I thought I could do is create a query linking tblEventDetail and
tblReserveDetail using EventDetailNo, then I could get total by NumberEating
* tblEventDetail.amount. But with the two tables linked, I can not change
NumberEating? I am really confussed and would appreciate any help.

Regards,

John
 
J

John Kirkman

Hello,

I solved my own problem. I had forgoten to make tblEventDetail.EventDetailNo
a primary key!

John
 

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