SQL Server Reporting Services Site settings

OSTOJIC Danijela 20 Reputation points
2025-10-20T07:25:13.5+00:00

Is it possible to display last update date (from database) on start page of SSRS?

The idea is users to see last update date before running reports.

Thank You

SQL Server Reporting Services
SQL Server Reporting Services
A SQL Server technology that supports the creation, management, and delivery of both traditional, paper-oriented reports and interactive, web-based reports.
0 comments No comments
{count} votes

Answer accepted by question author
  1. Akhil Gajavelly 645 Reputation points Microsoft External Staff Moderator
    2025-10-20T10:43:31.31+00:00

    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.

    1. Create a simple SSRS report (e.g., HomePage.rdl).
    2. In the report dataset, use a query like:
    3. SELECT MAX(LastUpdatedDate) AS LastDataUpdate
    4. FROM YourDataTable;
    5. Design the report to show the date in a text box:
    6. Data last updated on:  =Format(Fields!LastDataUpdate.Value, "dd-MMM-yyyy hh:mm tt")
    7. Deploy this report to your SSRS site (e.g., under Home folder).
    8. 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.

    1 person found this answer helpful.

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.