Does MS Access support multiple rows per record?
In Access, you have a single row which is a single record, so the answer is simply no.
However, what you could consider as a work around is to have every two rows in a table which can be treated as a single record by creating a field with the same ID (which of course can not be unique - set as a primary key).
This does however break normalisation rules in RDBMS (relational database management systems) but with clever reporting as an output, this can appear a single record.
The ID field can instead be indexed as a secondary key (a key which is indexed as 'Duplicates OK'). If you want to still add a unique field to simply act as an audit trail then include it too (as a primary key).
If anyone else has another suggestion, I would very much like to hear - so this question gets my vote as 'interesting'.
Thanks for asking and hope this helped
Ben Beitler