<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Report Refresh Time always Wrong in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Report-Refresh-Time-always-Wrong/m-p/5151009#M64895</link>
    <description>&lt;P&gt;By trying different combinations I think I've fixed this - I will see what happens overnight before I close the ticket:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ArchStanton_0-1776331954730.png" style="width: 744px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1333830i40E495BD82C22A00/image-dimensions/744x235?v=v2" width="744" height="235" role="button" title="ArchStanton_0-1776331954730.png" alt="ArchStanton_0-1776331954730.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 16 Apr 2026 09:33:06 GMT</pubDate>
    <dc:creator>ArchStanton</dc:creator>
    <dc:date>2026-04-16T09:33:06Z</dc:date>
    <item>
      <title>Report Refresh Time always Wrong</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Report-Refresh-Time-always-Wrong/m-p/5150994#M64892</link>
      <description>&lt;P&gt;I wasn't sure where to post this so apologies if its in the wrong place.&lt;BR /&gt;&lt;BR /&gt;I have a following Report Refresh time on my report and today it is showing a time that is exactly 2hrs earlier than the correct time.&lt;BR /&gt;I am based in London UK, how do I get the time to align?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;let
    Source = DateTime.LocalNow(),
    #"Add 1hr" = DateTime.AddZone(Source,1),
    #"Converted to Table" = #table(1, {{#"Add 1hr"}}),
    #"Renamed Columns" = Table.RenameColumns(#"Converted to Table",{{"Column1", "DateTime"}}),
    #"Changed Type" = Table.TransformColumnTypes(#"Renamed Columns",{{"DateTime", type datetime}}),
    #"Duplicated Column" = Table.DuplicateColumn(#"Changed Type", "DateTime", "DateTime - Copy"),
    #"Extracted Date" = Table.TransformColumns(#"Duplicated Column",{{"DateTime - Copy", DateTime.Date, type date}}),
    #"Duplicated Column1" = Table.DuplicateColumn(#"Extracted Date", "DateTime", "DateTime - Copy.1"),
    #"Extracted Time" = Table.TransformColumns(#"Duplicated Column1",{{"DateTime - Copy.1", DateTime.Time, type time}}),
    #"Renamed Columns1" = Table.RenameColumns(#"Extracted Time",{{"DateTime - Copy", "Date"}, {"DateTime - Copy.1", "Time"}})
in
    #"Renamed Columns1"&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I originally added 1 hour before British Summer Time ended in 2025, that was also incorrect, now its 2 hours out.&lt;BR /&gt;I'd be grateful for a fix to this because it causes a lot of confusion!&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Apr 2026 09:23:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Report-Refresh-Time-always-Wrong/m-p/5150994#M64892</guid>
      <dc:creator>ArchStanton</dc:creator>
      <dc:date>2026-04-16T09:23:21Z</dc:date>
    </item>
    <item>
      <title>Re: Report Refresh Time always Wrong</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Report-Refresh-Time-always-Wrong/m-p/5151009#M64895</link>
      <description>&lt;P&gt;By trying different combinations I think I've fixed this - I will see what happens overnight before I close the ticket:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ArchStanton_0-1776331954730.png" style="width: 744px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1333830i40E495BD82C22A00/image-dimensions/744x235?v=v2" width="744" height="235" role="button" title="ArchStanton_0-1776331954730.png" alt="ArchStanton_0-1776331954730.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Apr 2026 09:33:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Report-Refresh-Time-always-Wrong/m-p/5151009#M64895</guid>
      <dc:creator>ArchStanton</dc:creator>
      <dc:date>2026-04-16T09:33:06Z</dc:date>
    </item>
    <item>
      <title>Re: Report Refresh Time always Wrong</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Report-Refresh-Time-always-Wrong/m-p/5151725#M64902</link>
      <description>&lt;P&gt;Try using this instead:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;let
    Source           = DateTimeZone.UtcNow(),
    UKTime           = DateTimeZone.SwitchZone( Source, 0, 0 ),
    UKAdjusted       = DateTimeZone.ToLocal( Source ),
    AsDateTime       = DateTimeZone.RemoveZone( UKAdjusted ),
    AsTable          = #table( 1, {{ AsDateTime }} ),
    RenamedCols      = Table.RenameColumns( AsTable, {{"Column1", "DateTime"}} ),
    ChangedType      = Table.TransformColumnTypes( RenamedCols, {{"DateTime", type datetime}} ),
    WithDate         = Table.AddColumn( ChangedType, "Date", each DateTime.Date( [DateTime] ), type date ),
    WithTime         = Table.AddColumn( WithDate, "Time", each DateTime.Time( [DateTime] ), type time )
in
    WithTime&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 16 Apr 2026 20:34:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Report-Refresh-Time-always-Wrong/m-p/5151725#M64902</guid>
      <dc:creator>cengizhanarslan</dc:creator>
      <dc:date>2026-04-16T20:34:16Z</dc:date>
    </item>
    <item>
      <title>Re: Report Refresh Time always Wrong</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Report-Refresh-Time-always-Wrong/m-p/5151734#M64903</link>
      <description>&lt;P&gt;The Power BI Service always works in UTC, and so should you.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Apr 2026 20:41:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Report-Refresh-Time-always-Wrong/m-p/5151734#M64903</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2026-04-16T20:41:51Z</dc:date>
    </item>
    <item>
      <title>Re: Report Refresh Time always Wrong</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Report-Refresh-Time-always-Wrong/m-p/5152133#M64911</link>
      <description>&lt;P&gt;Thanks for this, I've just updated it with your code - lets see what happens.&lt;BR /&gt;&lt;BR /&gt;Last night, after the edit that I made which I mentioned above, the report said it refreshed at 23:55:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ArchStanton_0-1776412500593.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1333994iD74E26E0AE854A5B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ArchStanton_0-1776412500593.png" alt="ArchStanton_0-1776412500593.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;but the actual refreshed time in service says 02:56 despite me having it scheduled for 01:30:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ArchStanton_1-1776412702300.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1333995i68542CB7E5906933/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ArchStanton_1-1776412702300.png" alt="ArchStanton_1-1776412702300.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Scheduled refresh time:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ArchStanton_2-1776412752275.png" style="width: 549px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1333996i439E6A9921CF6214/image-dimensions/549x340?v=v2" width="549" height="340" role="button" title="ArchStanton_2-1776412752275.png" alt="ArchStanton_2-1776412752275.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Its such a mess, nothing is aligned, hopefully your fix will work, I'll try it to today.&lt;/P&gt;</description>
      <pubDate>Fri, 17 Apr 2026 08:00:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Report-Refresh-Time-always-Wrong/m-p/5152133#M64911</guid>
      <dc:creator>ArchStanton</dc:creator>
      <dc:date>2026-04-17T08:00:46Z</dc:date>
    </item>
    <item>
      <title>Re: Report Refresh Time always Wrong</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Report-Refresh-Time-always-Wrong/m-p/5152137#M64912</link>
      <description>&lt;P&gt;please see my response to the other SuperUser&lt;/P&gt;</description>
      <pubDate>Fri, 17 Apr 2026 08:01:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Report-Refresh-Time-always-Wrong/m-p/5152137#M64912</guid>
      <dc:creator>ArchStanton</dc:creator>
      <dc:date>2026-04-17T08:01:46Z</dc:date>
    </item>
    <item>
      <title>Re: Report Refresh Time always Wrong</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Report-Refresh-Time-always-Wrong/m-p/5152268#M64918</link>
      <description>&lt;P&gt;I've just tested your code and there's still an hour difference, the true refresh time that I can see in Service is 10:01 but the report sows 09:01 so its minus -1hr.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Is there a plus +1hr we can apply somewhere to your code?&lt;/P&gt;</description>
      <pubDate>Fri, 17 Apr 2026 09:33:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Report-Refresh-Time-always-Wrong/m-p/5152268#M64918</guid>
      <dc:creator>ArchStanton</dc:creator>
      <dc:date>2026-04-17T09:33:04Z</dc:date>
    </item>
    <item>
      <title>Re: Report Refresh Time always Wrong</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Report-Refresh-Time-always-Wrong/m-p/5154268#M64937</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/415600"&gt;@ArchStanton&lt;/a&gt;,&lt;BR /&gt;Thank you for posting your query in the Microsoft Fabric Community Forum.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Adding a manual +1 hour isn’t a reliable fix here. The underlying issue is that Power BI / Fabric Service evaluates current date‑time functions using UTC/server behavior, and functions like DateTimeZone.ToLocal() don’t necessarily return UK local time (BST/GMT) when they run in the Service.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;May be that’s why you’re currently seeing the 1 hour difference. the query result is still based on UTC logic. Manually adding an hour may look correct now, but it will typically become incorrect again when daylight‑saving time changes.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;For your reference: &lt;A href="https://learn.microsoft.com/en-us/powerquery-m/m-local-fixed-utc-variants" target="_blank"&gt;Local, fixed, and UTC variants of current time functions - PowerQuery M | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;The Service refresh time (10:01) is the actual refresh completion time.&lt;/LI&gt;
&lt;LI&gt;The report timestamp is being generated separately from query logic.&lt;/LI&gt;
&lt;LI&gt;A fixed +1 hour offset is only temporary.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Use DateTimeZone.UtcNow() as the base value and apply explicit UK BST/GMT daylight‑saving logic, rather than relying on “local” conversions or hard‑coded offsets.&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;Ganesh Singamshetty.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Apr 2026 09:08:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Report-Refresh-Time-always-Wrong/m-p/5154268#M64937</guid>
      <dc:creator>v-ssriganesh</dc:creator>
      <dc:date>2026-04-20T09:08:10Z</dc:date>
    </item>
    <item>
      <title>Re: Report Refresh Time always Wrong</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Report-Refresh-Time-always-Wrong/m-p/5154281#M64938</link>
      <description>&lt;P&gt;Thank you for the detailed explanation, that all makes sense.&lt;BR /&gt;&lt;BR /&gt;I understand that it is only a temporary fix but where do I add an hour to the code below?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;let
    Source           = DateTimeZone.UtcNow(),
    UKTime           = DateTimeZone.SwitchZone( Source, 0, 0 ),
    UKAdjusted       = DateTimeZone.ToLocal( Source ),
    AsDateTime       = DateTimeZone.RemoveZone( UKAdjusted ),
    AsTable          = #table( 1, {{ AsDateTime }} ),
    RenamedCols      = Table.RenameColumns( AsTable, {{"Column1", "DateTime"}} ),
    ChangedType      = Table.TransformColumnTypes( RenamedCols, {{"DateTime", type datetime}} ),
    WithDate         = Table.AddColumn( ChangedType, "Date", each DateTime.Date( [DateTime] ), type date ),
    WithTime         = Table.AddColumn( WithDate, "Time", each DateTime.Time( [DateTime] ), type time )
in
    WithTime&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Or, i can add it to my measure like this&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;LastRefreshDate = "Last Refresh Date: " &amp;amp; MAX(ReportRefreshDateTime[DateTime])+1&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I will persevere with this option I only have to changed twice a year.&lt;BR /&gt;Thank you&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Apr 2026 09:31:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Report-Refresh-Time-always-Wrong/m-p/5154281#M64938</guid>
      <dc:creator>ArchStanton</dc:creator>
      <dc:date>2026-04-20T09:31:06Z</dc:date>
    </item>
    <item>
      <title>Re: Report Refresh Time always Wrong</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Report-Refresh-Time-always-Wrong/m-p/5154286#M64939</link>
      <description>&lt;P&gt;Hello &lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/415600"&gt;@ArchStanton&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;The cleanest place to add the extra hour is after the timezone has been removed and the value becomes a standard datetime.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Specifically, add the following step after AsDateTime:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;AdjustedDateTime = AsDateTime + #duration(0, 1, 0, 0)&lt;/LI-CODE&gt;
&lt;P&gt;Then use AdjustedDateTime when creating the table instead of AsDateTime.&lt;/P&gt;
&lt;P&gt;This will shift the displayed time by +1 hour and should align it with what you are currently seeing in the Service.&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;Ganesh Singamshetty.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Apr 2026 12:45:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Report-Refresh-Time-always-Wrong/m-p/5154286#M64939</guid>
      <dc:creator>v-ssriganesh</dc:creator>
      <dc:date>2026-04-20T12:45:47Z</dc:date>
    </item>
    <item>
      <title>Re: Report Refresh Time always Wrong</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Report-Refresh-Time-always-Wrong/m-p/5154365#M64942</link>
      <description>&lt;P&gt;Thanks for getting back to me, I'm not the best with Power Query and I'm getting this error message when I add your step:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ArchStanton_0-1776681431250.png" style="width: 600px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1334227i94DE0EF1FA3E9828/image-dimensions/600x81?v=v2" width="600" height="81" role="button" title="ArchStanton_0-1776681431250.png" alt="ArchStanton_0-1776681431250.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Apr 2026 10:37:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Report-Refresh-Time-always-Wrong/m-p/5154365#M64942</guid>
      <dc:creator>ArchStanton</dc:creator>
      <dc:date>2026-04-20T10:37:54Z</dc:date>
    </item>
    <item>
      <title>Re: Report Refresh Time always Wrong</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Report-Refresh-Time-always-Wrong/m-p/5154389#M64943</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/415600"&gt;@ArchStanton&lt;/a&gt;,&lt;BR /&gt;Thank you for sharing the screenshot.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;The error occurs because in Power Query, each line must be added as a new step inside the let in block, with the previous step ending in a comma. If the new line is entered by itself in the formula bar, Power Query tries to evaluate AdjustedDateTime before it exists.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Please update your query like this Add the new step after AsDateTime:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;let

    Source           = DateTimeZone.UtcNow(),

    UKTime           = DateTimeZone.SwitchZone(Source, 0, 0),

    UKAdjusted       = DateTimeZone.ToLocal(Source),

    AsDateTime       = DateTimeZone.RemoveZone(UKAdjusted),

    AdjustedDateTime = AsDateTime + #duration(0, 1, 0, 0),



    AsTable          = #table(1, {{AdjustedDateTime}}),

    RenamedCols      = Table.RenameColumns(AsTable, {{"Column1", "DateTime"}}),

    ChangedType      = Table.TransformColumnTypes(RenamedCols, {{"DateTime", type datetime}}),

    WithDate         = Table.AddColumn(ChangedType, "Date", each DateTime.Date([DateTime]), type date),

    WithTime         = Table.AddColumn(WithDate, "Time", each DateTime.Time([DateTime]), type time)

in

    WithTime&lt;/LI-CODE&gt;
&lt;P&gt;Power Query steps work sequentially, so the new step must be part of the query and referenced later in AsTable.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Please try the above structure and let me know how it goes.&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Ganesh Singamshetty&lt;/P&gt;</description>
      <pubDate>Mon, 20 Apr 2026 11:01:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Report-Refresh-Time-always-Wrong/m-p/5154389#M64943</guid>
      <dc:creator>v-ssriganesh</dc:creator>
      <dc:date>2026-04-20T11:01:36Z</dc:date>
    </item>
    <item>
      <title>Re: Report Refresh Time always Wrong</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Report-Refresh-Time-always-Wrong/m-p/5154395#M64944</link>
      <description>&lt;P&gt;My bad, I tried to enter the line in the Query Steps section and not in the Advanced editor window.&lt;/P&gt;&lt;P&gt;Sorry for the confusion!&lt;BR /&gt;Thanks again for your help&lt;/P&gt;</description>
      <pubDate>Mon, 20 Apr 2026 11:07:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Report-Refresh-Time-always-Wrong/m-p/5154395#M64944</guid>
      <dc:creator>ArchStanton</dc:creator>
      <dc:date>2026-04-20T11:07:02Z</dc:date>
    </item>
    <item>
      <title>Re: Report Refresh Time always Wrong</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Report-Refresh-Time-always-Wrong/m-p/5154512#M64946</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/882998"&gt;@v-ssriganesh&lt;/a&gt;&amp;nbsp; Not sure why you at-d me.&amp;nbsp; perhaps you should check who you meant to reply to?&lt;/P&gt;</description>
      <pubDate>Mon, 20 Apr 2026 12:35:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Report-Refresh-Time-always-Wrong/m-p/5154512#M64946</guid>
      <dc:creator>jjustjjo</dc:creator>
      <dc:date>2026-04-20T12:35:57Z</dc:date>
    </item>
  </channel>
</rss>

