A
ArielZusya
I've got a query (qryMaingroup) that looks at a table (tblMain) and displays
all the records in tblMain with a seat number less than a particular value.
I'd like to query that query to find the first record that has a seat number
which adding 1 would mean that the next record in the original query is not
equal. In other words if the first query returns all those in tblMain with
tblMain.Seat less than 13, the second query returns the lowest Seat value
from the first query where tblMain.Seat + 1 < tblMain.Seat from the next
lowest value in that first query. I think ultimately I'm looking for a way
to return the record that appears next in the query of tblMain. Is there a
way to do that? Thanks!
all the records in tblMain with a seat number less than a particular value.
I'd like to query that query to find the first record that has a seat number
which adding 1 would mean that the next record in the original query is not
equal. In other words if the first query returns all those in tblMain with
tblMain.Seat less than 13, the second query returns the lowest Seat value
from the first query where tblMain.Seat + 1 < tblMain.Seat from the next
lowest value in that first query. I think ultimately I'm looking for a way
to return the record that appears next in the query of tblMain. Is there a
way to do that? Thanks!