The following is a sub-routine, which ran perfectly well, before I added ( both to the underlying table/query and the .Edit & .Update in the Sub) the field ... !Signpost_ID. i've run teh debug through it,a nd it just skips out of teh procedure, at the point it recahes the line !Signpost_ID = Me.cboSignposts.Value ?? Any helpful suggestions, would be appreciated. I've checked the 'usual suspects' i.e. Syntax, spelling, is field in recordset ? Unfortunately, I get no error message such as, " Item not in this collection " for example.
Thank you.
Code:
Sub UpdRefInfo()
With Forms!frmClients!sfrmReferrals.Form.Recordset
.FindFirst "[Referral_Source_ID] Is Null AND [Issue_ID] Is Null AND [Project_ID] Is Null AND [Funding_Area_ID] Is Null AND [HTRG_ID] Is Null"
.Edit
!Referral_Source_ID = Me.cboRefSource.Value
!Issue_ID = StrIssues
!Project_ID = Me.cboProjects.Value
!Signpost_ID = Me.cboSignposts.Value
!Funding_Area_ID = Me.cboFunding.Value
!HTRG_ID = StrHTRG
.Update
.Requery
End With
End Sub
Thank you.