To lay it plainly, I am designing an Auction database.
I have a table that lists each bid as they are placed. Fields: Artwork No., Bidder No., Amount
I need to then be able to see, at any time, which bidders have the highest bid on each artwork. Output: Artwork No., Bidder No., Amount (max of...)
Building a query that groups on the Artwork No. and finds the max of the Amount does not work because I don't know which bidder had the highest bid. Adding the Bidder No. field produces more problems.
Is there a way that I can design my query so that I know what the highest bid on each Artwork is and who had that highest bid, or will I have to build a macro?
Thanks, guys!