Calculated field to show last execution of a report

Look for help to create a calculated in (usage statistics) account to get the last execution date of specific report.

Hi @knayak,
Please try this formula to get the last execution date of a specific report:

TimestampToDate(
  Max(
    Filter([Time].[Day].Members,
    [Measures].[Report Executions]>0
    ),
    DateToTimestamp([Time].CurrentHierarchyMember.StartDate)
  )
)

Don’t forget to change the measure formatting to the date format.

In the report it looks like this:

best,
Gerda // support@eazybi.com

Is it possible to embed that date in the report or dashboard description using Markdown? Thanks in advance!