Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Is not null statement help

Status
Not open for further replies.

ScottTN

IS-IT--Management
Sep 19, 2002
22
US
I am trying to use a If then statement to make sure that a field is not null based on a combo box value. Thanks Scott!

__________________________________________________________

If Me.cboStatus = "Complete" Then
Me.txtDateComplete IS NOT NULL STATEMENT HERE???

Else

End If
 
Scott,

If Me.cboStatus = "Complete" Then
If IsNull(Me.txtDateComplete) Then
MsgBox('...')
End If
Else

End If

HTH,
Wayne
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top