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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Anonymous
Not applicable

Scheduled refresh stamp not updating

I have an update stamp that updates ok when I press the refresh button manually, however when the scheduled refresh completes it doesn't update the last updated stamp, even though the scheduled refresh has completed ok?

 

Please can you help me. 

Many Thanks

 

1 ACCEPTED SOLUTION
Whitewater100
Solution Sage
Solution Sage

Hi:

Here is one way via Power Query. You go to GET DATA, BLANK QUERY > Click on ADVANCED EDITOR and paste this code over 

Source

Let

In

Paste on Blank Advanced Editor Page:

let

  Source = #table(type table[Date Last Refreshed=datetime], {{DateTime.LocalNow()}}),

    #"Added Custom" = Table.AddColumn(Source, "Date Last Refreshed UTC -4", each [Date Last Refreshed] - #duration(0, 4, 0, 0)),

    #"Changed Type1" = Table.TransformColumnTypes(#"Added Custom",{{"Date Last Refreshed UTC -4", type datetimezone}})

in

    #"Changed Type1"

Name query "Last Refresh"

Whitewater100_3-1652622186156.png

 

Then you can add measures to reflect the refresh time. In my example I have two, one for regular UTC time and one for UTC time -4 hours.

Add Measure(s) to Table Fields on Right:

Refresh Date-Time EST= VALUES (Last_Refresh[Date Last Refreshed UTC -4])

 

Last Refreshed Date = Values('Last Refresh'[Date Last Refreshed])

 

PQ result: Last Refreshed Table

Whitewater100_0-1652621507302.png

Refresh Date-Time EST= VALUES (Last_Refresh[Date Last Refreshed UTC -4])

Last Refreshed Date = Values('Last Refresh'[Date Last Refreshed])

Example of Meaure and card visual

Whitewater100_2-1652622078965.png

 

 

 

Put this in card and change format to “Whole Number”

 

In DAX I have seen this measure

Last Refresh = UTC(NOW()

 

But via PQ is a better way, I have read.

 

I hope this helps!

 

View solution in original post

1 REPLY 1
Whitewater100
Solution Sage
Solution Sage

Hi:

Here is one way via Power Query. You go to GET DATA, BLANK QUERY > Click on ADVANCED EDITOR and paste this code over 

Source

Let

In

Paste on Blank Advanced Editor Page:

let

  Source = #table(type table[Date Last Refreshed=datetime], {{DateTime.LocalNow()}}),

    #"Added Custom" = Table.AddColumn(Source, "Date Last Refreshed UTC -4", each [Date Last Refreshed] - #duration(0, 4, 0, 0)),

    #"Changed Type1" = Table.TransformColumnTypes(#"Added Custom",{{"Date Last Refreshed UTC -4", type datetimezone}})

in

    #"Changed Type1"

Name query "Last Refresh"

Whitewater100_3-1652622186156.png

 

Then you can add measures to reflect the refresh time. In my example I have two, one for regular UTC time and one for UTC time -4 hours.

Add Measure(s) to Table Fields on Right:

Refresh Date-Time EST= VALUES (Last_Refresh[Date Last Refreshed UTC -4])

 

Last Refreshed Date = Values('Last Refresh'[Date Last Refreshed])

 

PQ result: Last Refreshed Table

Whitewater100_0-1652621507302.png

Refresh Date-Time EST= VALUES (Last_Refresh[Date Last Refreshed UTC -4])

Last Refreshed Date = Values('Last Refresh'[Date Last Refreshed])

Example of Meaure and card visual

Whitewater100_2-1652622078965.png

 

 

 

Put this in card and change format to “Whole Number”

 

In DAX I have seen this measure

Last Refresh = UTC(NOW()

 

But via PQ is a better way, I have read.

 

I hope this helps!

 

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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