Alert user to check the filed when it is final

  • Thread starter mls via AccessMonster.com
  • Start date
M

mls via AccessMonster.com

Hi, I want to create an alert to check the Final( checkbox ) field, if
date_issued is enter.
if date_issued is null then do nothing, In what even I have to code this and
how?
 
M

Marshall Barton

mls said:
Hi, I want to create an alert to check the Final( checkbox ) field, if
date_issued is enter.
if date_issued is null then do nothing, In what even I have to code this and
how?


Based on just that one requirement, you can use the date
text box's AfterUpdate event.

If Not IsNull(Me.date_issued) Then
MsgBox "check box message here"
End If
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top