Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
Kalachuchi
Helper III
Helper III

Show date last refreshed on Power BI

Hello Guys,

I have a dashboard which refreshes every two hours and I want to show when was the dashboard refreshed. 

it will be like last refreshed x hours ago. Depending on when the user has access the dashboard. is it possible?

1 ACCEPTED SOLUTION

@Kalachuchi 
Use NOW code to find current time and then subtract that from Refresh time.

Use below code:

Date Refreshed =
VAR _time =
    NOW ()
RETURN
    FORMAT ( MAX ( Query1[Time] ) - _time, "short time" ) & " ago"

 

To find the best format and change it, please see the Format function page.

the output will be as below:

VahidDM_0-1629175950002.png

 

Did I answer your question? Mark my post as a solution!

Appreciate your Kudos VahidDM_1-1629175990085.png !!

 

 

View solution in original post

3 REPLIES 3
VahidDM
Super User
Super User

Hi @Kalachuchi 

 

Please see the below links:

How do you get a REFRESH DATE in your Power BI report???

Create a column in Power BI for last refresh date

 

Did I answer your question? Mark my post as a solution!

Appreciate your Kudos VahidDM_0-1629171289924.png !!

@VahidDM  hello,

 

I saw that one before. But instead of showing the dates. it will be shown as for example 3pm refreshed then the user has accessed it at 5pm then the user will see Date Refreshed: 2 hours ago.

@Kalachuchi 
Use NOW code to find current time and then subtract that from Refresh time.

Use below code:

Date Refreshed =
VAR _time =
    NOW ()
RETURN
    FORMAT ( MAX ( Query1[Time] ) - _time, "short time" ) & " ago"

 

To find the best format and change it, please see the Format function page.

the output will be as below:

VahidDM_0-1629175950002.png

 

Did I answer your question? Mark my post as a solution!

Appreciate your Kudos VahidDM_1-1629175990085.png !!

 

 

Helpful resources

Announcements
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.