Thanks for the reply...can this work with multiple columns? I have more columns than Acct# and Date...Sorry, I should have specified that earlier. I can't seem to get it to work correctly, it continues to bring in all records where I only want to see the max date of the acct# with the other necessary columns. Here is an example of the SQL that I'm currently running without MAX.I've tried to rewrite it using MAX and entering GROUP By, but I keep getting an aggregate error when only specifying 1 field..acct#.Thanks for your help.SELECT ACCT.ACCT_KEY, btl.pl_user_key, pl.pltype_code, ACCT.status_code, btl.dateFrom btl inner join ACCT on btl.acct_sak = acct.acct_sak inner joinpl on btl.pl_sak = pl.pl_sakWhere Acct.Acct_key in ('12222','2222','3333') andbtl.transtype in ('ABD,'DBG')Order by Acct.Acct_key, btl.Date DESC