I want a SSIS expression which will give me the sunday date of last week.
Corresponding sql server query looks like :
select convert(date,DATEADD(wk, DATEDIFF(wk, 6, convert(date,@report_dt)), -1))
I want the same result in SSIS expression.
Thanks