I knew there was something familiar about the error I hit today, see post number 5:
https://www.accessforums.net/showthread.php?t=63255
I had to add "Exit Sub" to my code before I could get the form to close without coughing on the remaining statements in the OPEN code. One might have to suspect that I've discovered yet another of my life's nemesis?
Code:Private Sub Form_Open(Cancel As Integer) If Me.RecordsetClone.RecordCount = 0 Then MsgBox "There are no ""un-cleared"" deposits to show." DoCmd.Close acForm, Me.Name Exit Sub End If strLastReconcile = Me.OpenArgs Me.lblLR.Caption = "(Beginning with date: " & strLastReconcile & ")" Me.ChkCleared.SetFocus End Sub