I have a "WHERE" statement in my last query
I need to add another parameter if the
Can I add this to the same SQL or do I need to add another query?
SQL:
WHERE (((CDate([DateCreated] & " " & [Order Time]))>DMax("dtmQueryLastRun","tblQueryLastRun")));
I need to add another parameter if the
(CDate([DateCreated] & " " & [Order Time])
is < DMAX.... then WHERE (((CDate([NEWDATEFIELD])>DMax("dtmQueryLastRun","tblQueryLastRun")))Can I add this to the same SQL or do I need to add another query?