get the value from user entry and save to the table

S

skk

Hi!

I have 2 tables (tblPerson, tblInviteesList)

Below is the SQL generated by query then I open the form based on the query.
The form is continuous form so, the user can see the list of the names all
at once and check off the who they want to invite. My problem is saving the
value "EventCode" & "FY" in the form. I want to get "EventCode" & "FY"
values from the previous screen where user typed in and save to the
tblInviteesList (prefill those 2 values and user only check off the Inivte
check box) and save to the tblInviteesList. Help and thanks!

SELECT tblInviteesList.InviteesID, tblInviteesList.ProtocalID,
tblPerson.Name, tblPerson.EMPL, tblInviteesList.FY,
tblInviteesList.EventCode, tblInviteesList.Invite
FROM tblInviteesList RIGHT JOIN tblPerson ON tblInviteesList.ProtocalID =
tblPerson.ProtocalID
WHERE (((tblPerson.EMPL)=[Forms]![frmInvitationEmpl]![cboEmpl]));
 

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