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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Combo Box question

Status
Not open for further replies.

jpmillr1

Technical User
Jun 13, 2003
12
0
0
US
I have a troubleshooting database with two data fields in question - a STATUS field that denotes an issue as either "open" or "closed." I also have a DATE CLOSED field that tells what date the issue was closed.

Is there a way to force the STATUS field to "closed" if there is a date in the DATE CLOSED field?

Thanks!
 
If Not IsNull(Date_Closed) Then
Me.Status="closed"
Else
Me.Status="open"
End If
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top