I have a table that looks something like the following :
PropertyID Amount Type EndDate -------------------------------------------- 1
sounds like you want something like:
select PropertyID, SUM(Amount) from MyTable Where EndDate is null Group by PropertyID