I have a table with the following data
Bldg Suit SQFT Date 1 1 1,000 9/24/2012 1 1 1,500 12/31/2011 1 2 800 8/31/2012 1 2 500 10/1/2005
I want to write a query that will sum the max date for each suit record, so the desired result would be 1,800, and must be in one cell/row. This will ultimately be part of subquery, I am just not getting what I expect with the queries I have writtren so far.
Thanks in advance.