Ok, Im getting a data type mismatch error 3464 and I know it has something to do with my string being a check box and the quotes or something around it maybe in strMissinSelected? Debuging takes me to the line:
rst.FindFirst strMissinSelected
Private Sub cmdDeleteSelectedEntries_Click()
Dim Cancel As Integer
Dim strMissinSelected As String
Dim rst As Recordset
strMissinSelected = "ReleaseProduct = '" & Forms![frm_Hold]![frmsub_ProductHoldData].Form![chkRelease] & "'"
Set rst = Me.frmsub_ProductHoldData.Form.RecordsetClone
rst.FindFirst strMissinSelected
If rst.NoMatch Then
MsgBox "You need to select a return before proceeding"
Exit Sub
Else
MsgBox "the boxes are checked run code"
Cancel = fncRequiredReleaseSelectedEmail(Me)
End If
End Sub