soupisgood84
Technical User
Can someone tell me why my code doesn't work? There are no errors (other then it not working). Please Help!
Code:
Private Sub RequisitionPrice_BeforeUpdate(Cancel As Integer)
If Me.RequisitionPrice = "$0.00" Then
'Message box warning
MsgBox "Warning " _
& RequisitionPrice & " is not a valid entry." _
& vbCr & vbCr & "You will now been taken to the record to correct tis problem.", _
vbInformation, "Warning"
Cancel = True
End If
End Sub