I have a requirement in ssrs report to display previous business day date in expression.I am using the below sql in sql server to display date [quote]DATEADD(DAY, CASE DATENAME(WEEKDAY, GETDATE()) WHEN 'Sunday' THEN -2 WHEN 'Monday' THEN -3 ELSE -1 END, DATEDIFF(DAY, 0, GETDATE()))[/quote]can some help me with the similar code to display previous business day(just date) in ssrs expression ?
↧