M
Mike Mueller
Thomas & Jon and all others who are more educated than I at this
I have succeeded at pulling the monthly information from an Access DB for my
home page. The next step is that I need to pull the next occurence and only
the next occurence for a particular event and place that in a results box.
Here is what I have so far and FP cannot verify this query:
SELECT TOP 1 MonthName([EventMonth],True)+" "+Str([EventDay]) AS Expr1
FROM Main
WHERE (((Main.EventDate)>=Date()) AND ((Main.EventDetail)="drill"))
ORDER BY Main.EventDate;
I have succeeded at pulling the monthly information from an Access DB for my
home page. The next step is that I need to pull the next occurence and only
the next occurence for a particular event and place that in a results box.
Here is what I have so far and FP cannot verify this query:
SELECT TOP 1 MonthName([EventMonth],True)+" "+Str([EventDay]) AS Expr1
FROM Main
WHERE (((Main.EventDate)>=Date()) AND ((Main.EventDetail)="drill"))
ORDER BY Main.EventDate;