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
kirabray
Regular Visitor

Refresh Time Incorrect

Hello,

In my .pbix file I have a refresh time stamp that works when I manually refresh the data.

kirabray_0-1677680308914.png

I have published the report and set up a scheduled refresh for 8am, 9am, and so on. For some reason the scheduled refresh shows the wrong time in the time stamp by ~4 hours. I have checked the time zone and tried to look through other sources but can't find what might be causing this. Does anyone have any experience with this happening or have any suggestions?

kirabray_1-1677680465467.png

 

1 ACCEPTED SOLUTION
cbschley
Helper III
Helper III

I ran into this same issue, and what I believe to be causing this is that in PBI Desktop, the times are converted to your local time, but when published to the server they go to UTC. Therefore to solve for this, I convert my time column to my local timezone using the following DAX formula:

end_time_EST = [End Time] - TIME(5,0,0)
 
This formula will subtract 5 hours from your date/time column. It will make your desktop file time look wrong, but when published to the server, it will be in the correct time. Now since you mentioned that your times are about 4 hours off, I would change that from a 5 to a 4 in the formula above.
 

View solution in original post

2 REPLIES 2
cbschley
Helper III
Helper III

I ran into this same issue, and what I believe to be causing this is that in PBI Desktop, the times are converted to your local time, but when published to the server they go to UTC. Therefore to solve for this, I convert my time column to my local timezone using the following DAX formula:

end_time_EST = [End Time] - TIME(5,0,0)
 
This formula will subtract 5 hours from your date/time column. It will make your desktop file time look wrong, but when published to the server, it will be in the correct time. Now since you mentioned that your times are about 4 hours off, I would change that from a 5 to a 4 in the formula above.
 

That worked perfectly. Thanks for your help!

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.