Hello!
I have a question about repopulating fields in forms that I think involves a better understanding than I currently have about row source/columns.
Details
I have three tables.
The first table is Recruits, which contains recruit information:
-StudyID (creates 1 to 1 relationship with second table)
-FirstName
-LastName
-Email address
-Department
The second table is ParticipantData, which contains various participant information (basically this is a subset of people we recruit, who become participants in our study):
-StudyID (foreign key)
-SchoolID (creates 1 to many relationship with third table)
-Phone
-ComputerOS
-ITManager
-Completed
-Group
-RV1Monitors
-RV2Monitors
-Travel times
-Subject notes
The third table is InteractionRecords, which contains details about interactions with participants:
-Record (PK)
-SchoolID (FK)
-ContactType
-ContactDate
-Status
-RVDate
-RVTime
-RVNotes
I’m trying to 1) create a Participant Data Entry Form where I can create a new record using the form and then by putting in the StudyID, prepopulate the Recruits fields into the form and then type in the rest of the fields found in the ParticipantData and 2) create an Interaction Data Entry Form where I can create a new record using the form and putting in the StudyID prepopulates fields found in the previous two tables and then allows me to enter the rest of the Interaction details.
What additional details do I need to provide to get some feedback on this?
Thank you!!!
I have a question about repopulating fields in forms that I think involves a better understanding than I currently have about row source/columns.
Details
I have three tables.
The first table is Recruits, which contains recruit information:
-StudyID (creates 1 to 1 relationship with second table)
-FirstName
-LastName
-Email address
-Department
The second table is ParticipantData, which contains various participant information (basically this is a subset of people we recruit, who become participants in our study):
-StudyID (foreign key)
-SchoolID (creates 1 to many relationship with third table)
-Phone
-ComputerOS
-ITManager
-Completed
-Group
-RV1Monitors
-RV2Monitors
-Travel times
-Subject notes
The third table is InteractionRecords, which contains details about interactions with participants:
-Record (PK)
-SchoolID (FK)
-ContactType
-ContactDate
-Status
-RVDate
-RVTime
-RVNotes
I’m trying to 1) create a Participant Data Entry Form where I can create a new record using the form and then by putting in the StudyID, prepopulate the Recruits fields into the form and then type in the rest of the fields found in the ParticipantData and 2) create an Interaction Data Entry Form where I can create a new record using the form and putting in the StudyID prepopulates fields found in the previous two tables and then allows me to enter the rest of the Interaction details.
What additional details do I need to provide to get some feedback on this?
Thank you!!!