I have a Recordset as below which works
SELECT DISTINCT MemberID, RegStatus, ProfileDate, Title, PostTown, PostCode
FROM [Site Photos]
ORDER BY ProfileDate DESC
However as soon as I add a further field called "images" it all goes wrong
MemberID may have 3 images attached
How can I do the recordset so that only the first image record for the
members is displayed (as in the top records set)
so I only get 1 record displayed per memberID regardless of how many images
they have
Does that make sense ?
Andrew
SELECT DISTINCT MemberID, RegStatus, ProfileDate, Title, PostTown, PostCode
FROM [Site Photos]
ORDER BY ProfileDate DESC
However as soon as I add a further field called "images" it all goes wrong
MemberID may have 3 images attached
How can I do the recordset so that only the first image record for the
members is displayed (as in the top records set)
so I only get 1 record displayed per memberID regardless of how many images
they have
Does that make sense ?
Andrew
Comment