yes =-1 in access
if the field claimid is Text, use this
strSQL = "INSERT INTO tblEORrecvd (EORRECEIVED , ClaimID) Values (-1,'" & me.claimid & "')"
if the field claimid is Number, use this
strSQL = "INSERT INTO tblEORrecvd (EORRECEIVED , ClaimID) Values (-1," & me.claimid & ")"
CurrentDb.Execute strSQL
End Sub