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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
malesev_s
New Member

report refresh and timezone not updating

Hi,

 

I am having a problem with daily reports being a 10 hours behind.

I am in UTC+10 Syd Aust 

I date my reports with DAX (TODAY) and my reports do not display todays data until 10am UTC+10

Datasets and scheduled refreshes always work 

 

How do I get everything in the correct timezone?

 

Thanks in advance 🙂  

1 REPLY 1
d_gosbell
Super User
Super User

If you are using Power BI Report Server then this would suggest that your server is set to UTC time, if you set the timezone settings on the server this should fix your issue.

 

If you are using powerbi.com then all the servers are always set to UTC time so you need to use a different approach. One simplistic approach is to just add 10 hours, but that does not deal with daylight savings issues.

 

A friend of mine use a power query like the following to get the localtime in Sydney into his Power BI Reports

 

let
    Source = Json.Document(Web.Contents("http://worldtimeapi.org/api/timezone/Australia/Sydney")),
    #"Converted to Table" = Record.ToTable(Source),
    #"Transposed Table" = Table.Transpose(#"Converted to Table"),
    #"Promoted Headers" = Table.PromoteHeaders(#"Transposed Table", [PromoteAllScalars=true]),
    #"Removed Other Columns" = Table.SelectColumns(#"Promoted Headers",{"datetime"}),
    #"Changed Type" = Table.TransformColumnTypes(#"Removed Other Columns",{{"datetime", type datetimezone}})
in
    #"Changed Type"

 

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.