I need to find out the previous date than to the maximum date from a date field
J Jazz Oct 21, 2008 #1 I need to find out the previous date than to the maximum date from a date field
S Stefan Hoffmann Oct 21, 2008 #2 hi, I need to find out the previous date than to the maximum date from a date field Click to expand... This should do it: SELECT TOP 1 * FROM yourTable WHERE yourDateField < DMax("yourDateField", "yourTable") mfG --> stefan <--
hi, I need to find out the previous date than to the maximum date from a date field Click to expand... This should do it: SELECT TOP 1 * FROM yourTable WHERE yourDateField < DMax("yourDateField", "yourTable") mfG --> stefan <--