This code I have below is not doing what I want it to do. When the first message box response is no it does cancel properly. But when the message box response is yes it exits without running the rest of the code. The execution doesn't proceed to ProcessReceipt and the rest of the code is not run. The record is immediately saved with no additional user input. The second message box never appears. If I remove the Exit Sub line after End If all the code runs regardless of the response to the first message box. It just seems as though my GOTo line is being ignored. I must be missing something. Can someone please help me with this? Thank you.
Private Sub Form_BeforeUpdate(Cancel As Integer)
On Error GoTo Err_Form_BeforeUpdate
Dim ZeroResponse As Integer
If Me![TotalCostReceived].Value = 0 Then
ZeroResponse = MsgBox("You have entered Total Cost Received of ZERO!" _
& vbCrLf & vbCrLf & "Are you sure this is correct?", vbYesNo _
+ vbQuestion + vbDefaultButton2, "Zero Cost Entered")
If ZeroResponse = vbNo Then Cancel = True
Else
GoTo ProcessReceipt
End If
Exit Sub
ProcessReceipt:
Dim ItemCost As Double
ItemCost = Me!TotalCostReceived.Value / Me!QuantityReceived.Value
Me!UnitCost.Value = ItemCost
Dim UnitRec As String
UnitRec = UnitReceived
Me!ItemUnitReceived = UnitRec
Dim Response As Integer
Response = MsgBox("Save this receipt or Cancel?", vbOKCancel + vbQuestion _
+ vbDefaultButton1, "Process Receipt")
If Response = vbCancel Then Cancel = True
Exit Sub
Exit_Form_BeforeUpdate:
Exit Sub
Err_Form_BeforeUpdate:
MsgBox Err.Description
Resume Exit_Form_BeforeUpdate
End Sub
Private Sub Form_BeforeUpdate(Cancel As Integer)
On Error GoTo Err_Form_BeforeUpdate
Dim ZeroResponse As Integer
If Me![TotalCostReceived].Value = 0 Then
ZeroResponse = MsgBox("You have entered Total Cost Received of ZERO!" _
& vbCrLf & vbCrLf & "Are you sure this is correct?", vbYesNo _
+ vbQuestion + vbDefaultButton2, "Zero Cost Entered")
If ZeroResponse = vbNo Then Cancel = True
Else
GoTo ProcessReceipt
End If
Exit Sub
ProcessReceipt:
Dim ItemCost As Double
ItemCost = Me!TotalCostReceived.Value / Me!QuantityReceived.Value
Me!UnitCost.Value = ItemCost
Dim UnitRec As String
UnitRec = UnitReceived
Me!ItemUnitReceived = UnitRec
Dim Response As Integer
Response = MsgBox("Save this receipt or Cancel?", vbOKCancel + vbQuestion _
+ vbDefaultButton1, "Process Receipt")
If Response = vbCancel Then Cancel = True
Exit Sub
Exit_Form_BeforeUpdate:
Exit Sub
Err_Form_BeforeUpdate:
MsgBox Err.Description
Resume Exit_Form_BeforeUpdate
End Sub