It's hard to answer your question without knowing the table structure that
the query is base on.
Incase there is a field that you can sort by, and that field doesn't repeat
itself (apear only once in the query) you can use something like
SELECT (SELECT Count(*) FROM TableName As C where C.FieldName
<=TableName.FieldName ) AS RecordNum, TableName .*
FROM TableName
ORDER BY TableName.FieldName
Thanks for that. The problem I have is that the query I'm trying to put the
Autonumber into works off another query, which works off another query etc
etc. I know that if it's working off a table I can do it.
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.