Hi All,
Would appreciate the help. What's the best way to return the date of last monday?
I could use the following:
... but this assumes that the first day of the week is Sunday. I need it so that the first day of the week is Monday.
Can anyone help? Thanks
Ryan
Would appreciate the help. What's the best way to return the date of last monday?
I could use the following:
Code:
select DATEADD(wk, DATEDIFF(wk,0,getdate()), -7)
... but this assumes that the first day of the week is Sunday. I need it so that the first day of the week is Monday.
Can anyone help? Thanks
Ryan