Hi OSTOJIC Danijela,
Yes it’s possible, but you’ll need a small customization. SSRS itself doesn’t directly display dynamic data (like “last updated date”) on the default start page. However, you can achieve this by creating a simple “dashboard” report that becomes the default landing page for users.
- Create a simple SSRS report (e.g., HomePage.rdl).
- In the report dataset, use a query like:
- SELECT MAX(LastUpdatedDate) AS LastDataUpdate
- FROM YourDataTable;
- Design the report to show the date in a text box:
- Data last updated on: =Format(Fields!LastDataUpdate.Value, "dd-MMM-yyyy hh:mm tt")
- Deploy this report to your SSRS site (e.g., under Home folder).
- Set this report as the default page by saving its URL as a browser favorite or intranet shortcut for users, or by setting it as the home link in your portal navigation.
This way, when users open SSRS, they’ll immediately see the “last update date” before running any other reports.
Thanks,
Akhil.