Apr 25, 2007 #1 RonAle MIS Aug 9, 2006 4 US Hello, I'm basically trying to return date before the DMax date. for example if My table has a date field with these values 1. 4/25/07 2. 4/22/07 3. 4/19/07 4. 4/12/07 how would I return the value 4/22/07?
Hello, I'm basically trying to return date before the DMax date. for example if My table has a date field with these values 1. 4/25/07 2. 4/22/07 3. 4/19/07 4. 4/12/07 how would I return the value 4/22/07?
Apr 25, 2007 #2 PWise Programmer Dec 12, 2002 2,633 US dmax("datefield","tablename", "start not in (Select max(datefield)from tablename)") Upvote 0 Downvote
Apr 25, 2007 #3 PWise Programmer Dec 12, 2002 2,633 US sorry sb dmax("datefield","tablename", "datefield not in (Select max(datefield)from tablename)") Upvote 0 Downvote
Apr 25, 2007 Thread starter #4 RonAle MIS Aug 9, 2006 4 US Perfect.. thanks a bunch Upvote 0 Downvote