Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
8 years ago
Solved

Calculated date wrong on Power BI Server

I have a "Last Refresh Date" field in my report that is populated from a manual query:

let
Source = #table(type table[LastRefresh=datetime], {{DateTime.LocalNow()}})
in
Source

 

When I run it locally in PowerBI Desktop it works fine. When I publish it to the on-premises report server, the date is wrong. I have confirmed the report regional settings are set to Australia. I have confirmed the report and database servers regional settings are set to Australia. I have confirmed that the date/time on the servers are correct.

 

This report is scheduled to run every hour. When I look at the schedule in the "Manage" screen, the date and time are showing correctly:

 

Report details:

 

Schedule details:

Both screenshots were taken within 1 minute of each other, and I refreshed the report to make sure it was displaying the current details.

 

I am running the October version of the Power BI Server.

 

Anyone have any ideas?

  • Hi Anonymous,

     

    Based on my test, the DateTime.LocalNow() function will display in UTC time ignore the local region setting. So the report data is different from schedule refresh time. 

     

    Best Regards,
    Qiuyun Yu 

5 Replies

  • I had the same issue, date refreshed in Power Bi Desktop is not the same once calculate in Report Server Schedule Refresh.

     

    I've solved the problem by adding my timezone

     

    let
        Source = #table(type table[LastRefresh=datetime], {{DateTime.LocalNow()}}),
        #"LocalDateTime" = Table.AddColumn(Source, "LastRefeshLocal", each DateTime.AddZone([LastRefresh],1), type datetimezone)
    in
        #"LocalDateTime"

    • Anonymous's avatar
      Anonymous
      Not applicable

      That works great, thanks very much :)

       

      I'll just need to remember to adjust when daylight savings ends.

  • v-qiuyu-msft's avatar
    v-qiuyu-msft
    Community Support

    Hi Anonymous,

     

    Based on my test, the DateTime.LocalNow() function will display in UTC time ignore the local region setting. So the report data is different from schedule refresh time. 

     

    Best Regards,
    Qiuyun Yu 

    • Anonymous's avatar
      Anonymous
      Not applicable

      It's weird that the function displays the local time in the desktop program but not on the server. I know the web version is different, but I figured the server would function the same as the desktop software and use the regional settings (like the now() function in SSRS does). Especially since it is called "LocalNow" not "UTCNow".

    • gvg's avatar
      gvg
      Post Prodigy

      3 years after - DateTime.LocalNow() still doesn't show correct time even on Power BI Desktop :((