Reputation: 1
I have a report in SQL Server 2008 Reporting Services (SSRS) that I'd like to schedule to run automatically for the previous dates (That Means this a Banking Related Report and the Transaction date is Today's Date ) I would like the Report to generate daily automatically for Yesteraday's date i.e. suppose Transaction date is 15-01-2012
I want to send yesterday s transaction date i.e. 14-01-2013
report daily to the customer.
Is it posible and how can I do this please explain.
Upvotes: 0
Views: 5010
Reputation: 39566
Few steps here:
=DateAdd(DateInterval.Day, -1, Today())
.If you've never done it before, creating a subscription in Report Manager:
http://msdn.microsoft.com/en-us/library/ms189680.aspx
Upvotes: 3