Hi, I was wondering if it's possible to have a SP that uses a start/stop date parameter and returns multiple row back, BUT I only want to return one of those rows (doesn't matter which). I've been trying to use the MAX function with no luck... does anyone have any ideas if this is possible?Using this code:SELECT dbo.Jobs.Purchord, dbo.Jobs.Descr, jobs.subjobno, hours.datewrkFROM dbo.Hours INNER JOIN dbo.Jobs ON dbo.Hours.SubJobNo = dbo.Jobs.SubJobNowhere jobs.subjobNo = @subjobno and (hours.datewrk between @startdate and @enddate)GO