Have you considered a non-equi join? That would look something like this:
SELECT A.StudentID, A.StartDate, A.EndDate, A.Field1, A.Field2
FROM tblEnrollment AS A LEFT JOIN tblEnrollment AS B ON (A.StudentID = B.StudentID)
AND (A.EndDate=B.StartDate-1)
WHERE B.StudentID Is Null;
What that gives you is all the records that don't have a corresponing record that starts the day after the ending date of the first record.
[Caveat: Beware that you can only edit a non-equi join in the Access query designer in SQL View -- switching to Design View could cause the join to be lost (though if you do switch Access tells you about the problem, and if you immediately switch back to SQL View, you won't lose it)]
If you then UNION that with this:
SELECT A.StudentID, A.StartDate, B.EndDate, A.Field1, A.Field2
FROM tblEnrollment AS A INNER JOIN tblEnrollment AS B ON (A.StudentID = B.StudentID)
AND (A.EndDate= B.StartDate-1)
It should give you what you need, assuming there are never more than two contiguous records at a time. I'm not sure how you'd do it if you had more than two contiguous records (it might involve looking at StartDate-1 compared to EndDate), but this might get you started in the right direction.
--
David W. Fenton
David Fenton Associates
