Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hi,
Can anyone please let me know how can I display dataset's last refresh date of my power bi report? I want to display below date. I want this option on report, not on dashboard.
I
Shikha
"Home" -> "Enter Data" -> Just create a blank one --> Create Column --> "
If you are using Analysis Services and you use Automation Accounts in Azure to refresh it you can add line to your code to put date of refresh to table in SQL Database. Then you connect to this table in AAS and use MAX([LastRefreshDate]) in your report.
It's not easy but it's exatly what you need.
Create a new Blank Query, and then add this into the Advanced Editor:
let
Source = DateTimeZone.FixedUtcNow()
in
Source
Then any time your report is refreshed, you'll be able to use this to show the date/time of the refresh.
We can use the following to Adjust the timezone:
let
Source = DateTimeZone.SwitchZone(DateTimeZone.FixedUtcNow(),-5)
in
Source
this worked very well
Thanks for you quick response. My report is based on direct query, so I won't be able to create Blank Query. What do you suggest for this?
If it's directquery, then you could just create a new DAX measure:
Last Refresh = UTCNOW()
UTCNOW() displays current UTC timing, whenever we open the report. But whenever a report is opened that does not mean dataset is refreshed. So I want to show last refresh time from dataset, which is shown below.
Hi , did you find any soulation for it ? I am aslo facing same issue , please let me know if you find any soulation for it.
If you're in directquery mode, anytime you open the report in the Power BI service the query is refreshed
From: https://docs.microsoft.com/en-us/power-bi/desktop-directquery-about
"When opening an existing report in the Power BI service, or authoring a new one, the underlying data source is again queried to retrieve the necessary data."
Hi @Anonymous
Below is the similar post for your reference.
Regards,
Cherie
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.