How to display Last week Sunday and last week Saturday from current date in SSRS ?
In sql server we can find the last week Sunday and last week Saturday from todays date(CurrentDate='19-02-2020') as
select DATEADD(wk, -1, DATEADD(wk, DATEDIFF(wk, 0,getdate()), -1))-- for sunday
select DATEADD(wk, DATEDIFF(wk, 0, getdate()), -2) --for saturday
So how we can write an default expression in the SSRS Parameters?