I have a table for Registrants to an event. In the table I have field for the registrant’s roommate, and the row source is:
SELECT Registration.RecNumber, [First name] & " " & [last Name] AS [Full name] FROM Registration;
So let’s say there is a record Jim Smith, and I want to make Jim’s roommate Sally Mae. So I go to Jim Smith’s record and pick Sally Mae out of the drop down. How do I make Sally Mae’s record automatically Populate Jim Smith into the roommate field?
SELECT Registration.RecNumber, [First name] & " " & [last Name] AS [Full name] FROM Registration;
So let’s say there is a record Jim Smith, and I want to make Jim’s roommate Sally Mae. So I go to Jim Smith’s record and pick Sally Mae out of the drop down. How do I make Sally Mae’s record automatically Populate Jim Smith into the roommate field?