Ok, so the last line keeps saying its bugged.
Dim sAppID As String
sAppID = Me.AppID
Me.AppID.SetFocus
DoCmd.FindRecord sAppID, acAnywhere, , acSearchAll
When I try and alter it to get the help cues to come up, I get this "formula" pop up that lists ....
FindRecord(
FindWhat, [Match As AcFindMatch = acEntire], [
MatchCase], [
Search As AcSearchDirection = acSearchAll], [
SearchAsFormatted], [
OnlyCurrentField As AcFindField = acCurrent], [
FindFirst])
in my terms, I'm guessing this would equal the following:
Private Sub AppID_AfterUpdate()
Dim sAppID As String
sAppID = Participants.AppID
Participants.AppID.SetFocus
DoCmd.FindRecord(sAppID, acEntire, True, acSearchAll, True, acCurrent, True)
End Sub
When I searched help for it, I came up with this last line..
DoCmd.FindRecord(sAppID, acEntire, True, acSearchAll, True, acCurrent, True)
Since the acEntire, acSearchAll, and acCurrent are default values, I'm assuming that they can be left out completely. Its still not working though.
I am already feeling so stupid on this so thank you for not furthering that

You've been very kind and patient.
IN the Me.AppID --- does Me get replaced by the name of the table that is being used for the report?
I can at least READ the code now and understand it more but I still don't know enough to fix it.