<?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: Hours on a visual changing when refreshing on Report server in Report Server</title>
    <link>https://community.fabric.microsoft.com/t5/Report-Server/Hours-on-a-visual-changing-when-refreshing-on-Report-server/m-p/2961677#M28003</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="109790" data-lia-user-login="d_gosbell" class="lia-mention lia-mention-user"&gt;d_gosbell&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Update:&lt;/P&gt;&lt;P&gt;Thank you for the response. It helped a lot as I managed to finally resolve the problem.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Firstly, I changed the format of my date column ( [TimeStart]) on Power Query to datetime. I then created a custom column using my date column i.e.&amp;nbsp;&lt;FONT size="2" color="#993300"&gt;DateTime.ToText([TimeStart],"dd-MM-yyyy HH:mm:ss").&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;FONT size="3" color="#000000"&gt;Lastly, I used the custom column to create the Hours column, and it works perfectly.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2" color="#993300"&gt;&lt;FONT size="3" color="#000000"&gt;This is how it's showing now after scheduled refresh on Report Server:&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
    <pubDate>Mon, 12 Dec 2022 07:23:33 GMT</pubDate>
    <dc:creator>Tlotly</dc:creator>
    <dc:date>2022-12-12T07:23:33Z</dc:date>
    <item>
      <title>Hours on a visual changing when refreshing on Report server</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Hours-on-a-visual-changing-when-refreshing-on-Report-server/m-p/2937728#M27806</link>
      <description>&lt;P&gt;Good day&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a report with a visual which shows views per hour.&amp;nbsp; The report works perfectly on desktop version and when I save/publish it on the Report Server:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Desktop version:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;The report is scheduled to refreshed every hour on Report Server. So as soon as the scheduled refresh runs, it throws out the other hours, and they will only end on 12pm:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Scheduled refresh:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What causes this and how do can I fix it?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you in advance.&lt;/P&gt;&lt;P&gt;Matlotlo&lt;/P&gt;</description>
      <pubDate>Wed, 30 Nov 2022 06:31:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Hours-on-a-visual-changing-when-refreshing-on-Report-server/m-p/2937728#M27806</guid>
      <dc:creator>Tlotly</dc:creator>
      <dc:date>2022-11-30T06:31:00Z</dc:date>
    </item>
    <item>
      <title>Re: Hours on a visual changing when refreshing on Report server</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Hours-on-a-visual-changing-when-refreshing-on-Report-server/m-p/2940412#M27827</link>
      <description>&lt;P&gt;Issues like this are often caused by having code in Power Query that is dependant on the local timezone of the machine running the code and then having the server set with a different timezone to your client machine. So you may want to check if you have any calls doing anything like DateTimeZone.ToLocal and/or check the timezone setting on the server machine.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Dec 2022 00:46:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Hours-on-a-visual-changing-when-refreshing-on-Report-server/m-p/2940412#M27827</guid>
      <dc:creator>d_gosbell</dc:creator>
      <dc:date>2022-12-01T00:46:17Z</dc:date>
    </item>
    <item>
      <title>Re: Hours on a visual changing when refreshing on Report server</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Hours-on-a-visual-changing-when-refreshing-on-Report-server/m-p/2950400#M27913</link>
      <description>&lt;P&gt;Thank you for the response.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm not sure if I checked the timezones properly, but I formatted the date to datetimezone. Then created the hours that I'm using on the visual from the same datetimezone date.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Dax used to create the hour column:&lt;/STRONG&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;FONT size="2" color="#993300"&gt;&lt;SPAN&gt;Hours1 = &lt;/SPAN&gt;&lt;SPAN&gt;FORMAT&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;[TimeStart - hours - Copy.2]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;"HH AM/PM"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;Date column:&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;DIV&gt;I also checked the format on my machine as well as on the server, it's using the timezone below:&lt;/DIV&gt;&lt;DIV&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It's still not working after the server refresh, it goes back to showing only 12 hours.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;Matlotlo&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 06 Dec 2022 06:41:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Hours-on-a-visual-changing-when-refreshing-on-Report-server/m-p/2950400#M27913</guid>
      <dc:creator>Tlotly</dc:creator>
      <dc:date>2022-12-06T06:41:39Z</dc:date>
    </item>
    <item>
      <title>Re: Hours on a visual changing when refreshing on Report server</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Hours-on-a-visual-changing-when-refreshing-on-Report-server/m-p/2961677#M28003</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="109790" data-lia-user-login="d_gosbell" class="lia-mention lia-mention-user"&gt;d_gosbell&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Update:&lt;/P&gt;&lt;P&gt;Thank you for the response. It helped a lot as I managed to finally resolve the problem.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Firstly, I changed the format of my date column ( [TimeStart]) on Power Query to datetime. I then created a custom column using my date column i.e.&amp;nbsp;&lt;FONT size="2" color="#993300"&gt;DateTime.ToText([TimeStart],"dd-MM-yyyy HH:mm:ss").&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;FONT size="3" color="#000000"&gt;Lastly, I used the custom column to create the Hours column, and it works perfectly.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2" color="#993300"&gt;&lt;FONT size="3" color="#000000"&gt;This is how it's showing now after scheduled refresh on Report Server:&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 12 Dec 2022 07:23:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Hours-on-a-visual-changing-when-refreshing-on-Report-server/m-p/2961677#M28003</guid>
      <dc:creator>Tlotly</dc:creator>
      <dc:date>2022-12-12T07:23:33Z</dc:date>
    </item>
  </channel>
</rss>

