Date activated query!

B

Bob Vance

If my tblHorseInfo has these fields HorseID.Number, DateAlert.Date/Time ,
AlertInfo.Text
How would I design the query to show this on the Date Set
I am going to have a Listbox [ListAlert]on my Main Menu that will be visible
when there is a record to Show
Me.ListAlert.Visible = IIf(Me.ListAlert.ListCount = 0, False, True) showing
these 3 fields
 
B

Bob Vance

Bob Vance said:
If my tblHorseInfo has these fields HorseID.Number, DateAlert.Date/Time ,
AlertInfo.Text
How would I design the query to show this on the Date Set
I am going to have a Listbox [ListAlert]on my Main Menu that will be
visible when there is a record to Show
Me.ListAlert.Visible = IIf(Me.ListAlert.ListCount = 0, False, True)
showing these 3 fields
Ok worked it out :)
SELECT tblHorseInfo.HorseID, tblHorseInfo.MemoDate, tblHorseInfo.MemoText
FROM tblHorseInfo
WHERE (((tblHorseInfo.MemoDate)<Now()) AND ((tblHorseInfo.MemoText) Is Not
Null));
 

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