M
Michel Walsh
Depends if you want other fields or not. Assuming you don't need other
fields, you can try something like:
SELECT cohort, MIN(relsdate)
FROM tableName
WHERE relsdate BETWEEN date1 AND date2
GROUP BY cohort
where the only field not involved in the GROUP BY is the relsdate field, the
field you want the minimum.
Vanderghast, Access MVP
fields, you can try something like:
SELECT cohort, MIN(relsdate)
FROM tableName
WHERE relsdate BETWEEN date1 AND date2
GROUP BY cohort
where the only field not involved in the GROUP BY is the relsdate field, the
field you want the minimum.
Vanderghast, Access MVP