as per your given query, its as simple as
Select Name, Account#, StartDate, SentDate,
MIN(SentDate) OVER (PARTITION BY Group#) AS MinSentDate
from TABLE1
where SentDate < StartDate
------------------------------------------------------------------------------------------------------
SQL Server MVP
http://visakhm.blogspot.com/