Dec 16, 2008 #1 Costefran Technical User Joined Jan 2, 2008 Messages 197 Location GB Can anyone help I am trying to find the correct syntax for a parameter query to find dates that are greater than the last day of the current year Any help would be appreciated thanks
Can anyone help I am trying to find the correct syntax for a parameter query to find dates that are greater than the last day of the current year Any help would be appreciated thanks
Dec 16, 2008 #2 BigRed1212 Technical User Joined Mar 11, 2008 Messages 550 Location US Is date greater than last day of the current year the same thing as year greater than current year? Upvote 0 Downvote
Dec 16, 2008 #3 PHV MIS Joined Nov 8, 2002 Messages 53,708 Location FR SELECT ... FROM ... WHERE Year([your date field]) > Year(Date()) Hope This Helps, PH. FAQ219-2884 FAQ181-2886 Upvote 0 Downvote
SELECT ... FROM ... WHERE Year([your date field]) > Year(Date()) Hope This Helps, PH. FAQ219-2884 FAQ181-2886
Dec 16, 2008 Thread starter #4 Costefran Technical User Joined Jan 2, 2008 Messages 197 Location GB Worked a treat many thanks Upvote 0 Downvote