I am attempting to pull information from one form (course taken) to another form (Paper) and fill the information from the course form to the exact same field on the paper form.
Not sure which form / field to enter the code on. What I attempted was going to the course form on grade field:
Private Sub Grade_AfterUpdate()
'to auto fill the practicum form with course info
If Me.Capstone = 3 Then
[Forms]![Course Paper]![Grade] = Me.Grade
End If
End Sub
and on the Paper form on Current:
Private Sub Form_Current()
'to auto fill the info from the course form
If [Forms]![Course Taken].Capstone = 3 Then
Me.Grade = [Forms]![Course Taken]![Grade]
End If
End Sub
Not sure which form / field to enter the code on. What I attempted was going to the course form on grade field:
Private Sub Grade_AfterUpdate()
'to auto fill the practicum form with course info
If Me.Capstone = 3 Then
[Forms]![Course Paper]![Grade] = Me.Grade
End If
End Sub
and on the Paper form on Current:
Private Sub Form_Current()
'to auto fill the info from the course form
If [Forms]![Course Taken].Capstone = 3 Then
Me.Grade = [Forms]![Course Taken]![Grade]
End If
End Sub
Last edited: