Ahh, IT WORKS! Thank you so much for the help, I think the Option Explicit may have been the initial problem as you pointed out.
Code:
'Check TM Rate for a value
If ((Me.Project_Type) = "1") And IsNull(Me.TMRate) Then
MsgBox "Please fill in the Time and Materials Rate before proceeding", vbOKOnly
Me.TMRate.SetFocus
GoTo Exit_Procedure
End If
Ahh, IT WORKS! Thank you so much for the help, I think the Option Explicit may have been the initial problem as you pointed out.
Code:
'Check TM Rate for a value
If ((Me.Project_Type) = "1") And IsNull(Me.TMRate) Then
MsgBox "Please fill in the Time and Materials Rate before proceeding", vbOKOnly
Me.TMRate.SetFocus
GoTo Exit_Procedure
End If
It's not a problem at all. I'm only what this site would consider an intermediate user, and trust me, I use F1 and microsoft's help pages all the frakking time!