<?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: Evaluating the difference of Hourly Meter Readings with DAX in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Evaluating-the-difference-of-Hourly-Meter-Readings-with-DAX/m-p/804905#M4956</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="114168" data-lia-user-login="kentyler" class="lia-mention lia-mention-user"&gt;kentyler&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="159166" data-lia-user-login="Nathaniel_C" class="lia-mention lia-mention-user"&gt;Nathaniel_C&lt;/a&gt;&amp;nbsp; Thank you for the reply, The link to the sample pbix:&amp;nbsp;&lt;A title="pbix file" href="https://1drv.ms/u/s!AntLmHOXlXNW0wOnquh4nMvj-TRO?e=GXKVZN" target="_blank" rel="noopener"&gt;pbix file&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Sat, 28 Sep 2019 22:07:03 GMT</pubDate>
    <dc:creator>garbafarhan</dc:creator>
    <dc:date>2019-09-28T22:07:03Z</dc:date>
    <item>
      <title>Evaluating the difference of Hourly Meter Readings with DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Evaluating-the-difference-of-Hourly-Meter-Readings-with-DAX/m-p/804827#M4947</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have cumulative hourly meter readings (kWh) from 01/08/2018 00:00 to 31/08/2018 00:00 (&lt;A title="Sample_Data" href="https://1drv.ms/x/s!AntLmHOXlXNW0nkZHY4GZU8k3Mt5?e=bXWLuT" target="_self" rel="nofollow noopener noreferrer"&gt;https://1drv.ms/x/s!AntLmHOXlXNW0nkZHY4GZU8k3Mt5?e=bXWLuT&lt;/A&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Each of meter serial is unique and belongs to a certain feeder. what I want to achieve is to evaluate (using DAX column or a measure) for each meter in each feeder the hourly (kwh) from the cumulative i.e the difference between the hourly time steps readings. Thanks in advance&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 28 Sep 2019 13:34:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Evaluating-the-difference-of-Hourly-Meter-Readings-with-DAX/m-p/804827#M4947</guid>
      <dc:creator>garbafarhan</dc:creator>
      <dc:date>2019-09-28T13:34:01Z</dc:date>
    </item>
    <item>
      <title>Re: Evaluating the difference of Hourly Meter Readings with DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Evaluating-the-difference-of-Hourly-Meter-Readings-with-DAX/m-p/804869#M4948</link>
      <description>&lt;P&gt;Sounds like your first step would be to add an index to the table. So you can use index-1 in your measures to give you access to the previous reading.&lt;/P&gt;&lt;P&gt;That should let you calculate the change from reading to reading.&lt;/P&gt;</description>
      <pubDate>Sat, 28 Sep 2019 17:14:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Evaluating-the-difference-of-Hourly-Meter-Readings-with-DAX/m-p/804869#M4948</guid>
      <dc:creator>kentyler</dc:creator>
      <dc:date>2019-09-28T17:14:36Z</dc:date>
    </item>
    <item>
      <title>Re: Evaluating the difference of Hourly Meter Readings with DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Evaluating-the-difference-of-Hourly-Meter-Readings-with-DAX/m-p/804870#M4949</link>
      <description>&lt;P&gt;Then for each feeder/meter you should just be able to sum the changes.&lt;/P&gt;</description>
      <pubDate>Sat, 28 Sep 2019 17:15:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Evaluating-the-difference-of-Hourly-Meter-Readings-with-DAX/m-p/804870#M4949</guid>
      <dc:creator>kentyler</dc:creator>
      <dc:date>2019-09-28T17:15:22Z</dc:date>
    </item>
    <item>
      <title>Re: Evaluating the difference of Hourly Meter Readings with DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Evaluating-the-difference-of-Hourly-Meter-Readings-with-DAX/m-p/804885#M4951</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="114168" data-lia-user-login="kentyler" class="lia-mention lia-mention-user"&gt;kentyler&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="173729" data-lia-user-login="garbafarhan" class="lia-mention lia-mention-user"&gt;garbafarhan&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;However, I believe that it is not just the previous reading, so index won't work.&amp;nbsp; It has to be filtered for feeder and meter too.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Nathaniel&lt;/P&gt;</description>
      <pubDate>Sat, 28 Sep 2019 18:25:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Evaluating-the-difference-of-Hourly-Meter-Readings-with-DAX/m-p/804885#M4951</guid>
      <dc:creator>Nathaniel_C</dc:creator>
      <dc:date>2019-09-28T18:25:43Z</dc:date>
    </item>
    <item>
      <title>Re: Evaluating the difference of Hourly Meter Readings with DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Evaluating-the-difference-of-Hourly-Meter-Readings-with-DAX/m-p/804887#M4952</link>
      <description>&lt;P&gt;If you add filter and meter columns in a table or matrix it should default to grouping by filter and meter and summing the elapsed time column. If you post a sample pbx file I'll create and example for you.&lt;/P&gt;</description>
      <pubDate>Sat, 28 Sep 2019 19:14:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Evaluating-the-difference-of-Hourly-Meter-Readings-with-DAX/m-p/804887#M4952</guid>
      <dc:creator>kentyler</dc:creator>
      <dc:date>2019-09-28T19:14:44Z</dc:date>
    </item>
    <item>
      <title>Re: Evaluating the difference of Hourly Meter Readings with DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Evaluating-the-difference-of-Hourly-Meter-Readings-with-DAX/m-p/804898#M4955</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="173729" data-lia-user-login="garbafarhan" class="lia-mention lia-mention-user"&gt;garbafarhan&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="114168" data-lia-user-login="kentyler" class="lia-mention lia-mention-user"&gt;kentyler&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is a pic of using the index, on the table and the code.&amp;nbsp; What it doesn't do is get the previous date by meter and Feeder.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos are nice too.&lt;BR /&gt;Nathaniel&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Dif = var readnow = (Meter[READING])
        var readbefore = IF( Meter[Index] &amp;gt;  0, CALCULATE(MAX(Meter[READING]),FILTER(Meter, Meter[Index] = EARLIER(Meter[Index]  )-1)) ,Meter[READING])

        return readnow - readbefore&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 28 Sep 2019 20:30:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Evaluating-the-difference-of-Hourly-Meter-Readings-with-DAX/m-p/804898#M4955</guid>
      <dc:creator>Nathaniel_C</dc:creator>
      <dc:date>2019-09-28T20:30:49Z</dc:date>
    </item>
    <item>
      <title>Re: Evaluating the difference of Hourly Meter Readings with DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Evaluating-the-difference-of-Hourly-Meter-Readings-with-DAX/m-p/804905#M4956</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="114168" data-lia-user-login="kentyler" class="lia-mention lia-mention-user"&gt;kentyler&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="159166" data-lia-user-login="Nathaniel_C" class="lia-mention lia-mention-user"&gt;Nathaniel_C&lt;/a&gt;&amp;nbsp; Thank you for the reply, The link to the sample pbix:&amp;nbsp;&lt;A title="pbix file" href="https://1drv.ms/u/s!AntLmHOXlXNW0wOnquh4nMvj-TRO?e=GXKVZN" target="_blank" rel="noopener"&gt;pbix file&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 28 Sep 2019 22:07:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Evaluating-the-difference-of-Hourly-Meter-Readings-with-DAX/m-p/804905#M4956</guid>
      <dc:creator>garbafarhan</dc:creator>
      <dc:date>2019-09-28T22:07:03Z</dc:date>
    </item>
    <item>
      <title>Re: Evaluating the difference of Hourly Meter Readings with DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Evaluating-the-difference-of-Hourly-Meter-Readings-with-DAX/m-p/804911#M4958</link>
      <description>&lt;P&gt;Yes the filter by meter and feeder&amp;nbsp; is now the issue&lt;/P&gt;</description>
      <pubDate>Sat, 28 Sep 2019 22:48:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Evaluating-the-difference-of-Hourly-Meter-Readings-with-DAX/m-p/804911#M4958</guid>
      <dc:creator>garbafarhan</dc:creator>
      <dc:date>2019-09-28T22:48:06Z</dc:date>
    </item>
    <item>
      <title>Re: Evaluating the difference of Hourly Meter Readings with DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Evaluating-the-difference-of-Hourly-Meter-Readings-with-DAX/m-p/804916#M4959</link>
      <description>&lt;P&gt;I did some work with the sample file. But without the excel file its based on I can't alter the queries.&lt;/P&gt;&lt;P&gt;It did bring up the idea that this is all better done in excel, which has a programatic way to compare values in different rows.&lt;/P&gt;&lt;P&gt;you can sort the excel file by meter and by transformer and then calculate the differences.&lt;/P&gt;&lt;P&gt;and then load the data into power bi&lt;/P&gt;&lt;P&gt;It seems like you are interested in the hourly difference, so you would only need every 4th row to load into Power BI&lt;/P&gt;</description>
      <pubDate>Sat, 28 Sep 2019 23:35:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Evaluating-the-difference-of-Hourly-Meter-Readings-with-DAX/m-p/804916#M4959</guid>
      <dc:creator>kentyler</dc:creator>
      <dc:date>2019-09-28T23:35:22Z</dc:date>
    </item>
    <item>
      <title>Re: Evaluating the difference of Hourly Meter Readings with DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Evaluating-the-difference-of-Hourly-Meter-Readings-with-DAX/m-p/804956#M4961</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="114168" data-lia-user-login="kentyler" class="lia-mention lia-mention-user"&gt;kentyler&lt;/a&gt;&amp;nbsp;, Thank for your reply. I have evaluated the hourly difference (row difference) for each meter in each feeder (see sample picture below).&amp;nbsp; Here is a link to the excel file&amp;nbsp;&lt;A title="Excel File" href="https://1drv.ms/x/s!AntLmHOXlXNW0xUbKkgvhvfmNmFM?e=Ghalzq" target="_self"&gt;Excel File&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank You&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 29 Sep 2019 06:05:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Evaluating-the-difference-of-Hourly-Meter-Readings-with-DAX/m-p/804956#M4961</guid>
      <dc:creator>garbafarhan</dc:creator>
      <dc:date>2019-09-29T06:05:45Z</dc:date>
    </item>
    <item>
      <title>Re: Evaluating the difference of Hourly Meter Readings with DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Evaluating-the-difference-of-Hourly-Meter-Readings-with-DAX/m-p/805018#M4964</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="173729" data-lia-user-login="garbafarhan" class="lia-mention lia-mention-user"&gt;garbafarhan&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="114168" data-lia-user-login="kentyler" class="lia-mention lia-mention-user"&gt;kentyler&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Did it! Went down a lot of rabbit holes figuring this one out. Will give you the PBIX after I get it cleaned up - lot of rabbit holes.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The crux of the matter is in Power Query, getting the sort order correctly defined and then using the insertion of an index to capture that rather than only using the index to be able to go back one value.&amp;nbsp; In addition, I created a unique identifer by concatenating the Feeder and the Meter (In case the meters are not unique across feeders else you can use the meter id) Then there are three possible returns, 0, the answer, or blank if moving on to the next identifier. So, used a couple of IFs as well. Depending on what you want to see, you could chop off rows.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The great thing about doing it this way of course is that it is automatic with refresh!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Let me know if you have any questions and thanks for the issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos are nice too.&lt;BR /&gt;Nathaniel&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Earlier Index = VAR earlyread = Calculate ( Max(Meter[READING]), Filter(All(Meter),Meter[Sort by time and unique ID]= EARLIER(Meter[Sort by time and unique ID])-1))
                var currentread = Meter[READING]
                var result = if (Meter[Sort by time and unique ID]=0,0, currentread - earlyread)


                
  return   IF(Meter[Unique ID]= CALCULATE(max(Meter[Unique ID]), FILTER(ALL(Meter),Meter[Sort by time and unique ID]= EARLIER(Meter[Sort by time and unique ID])-1)),result)&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 29 Sep 2019 14:19:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Evaluating-the-difference-of-Hourly-Meter-Readings-with-DAX/m-p/805018#M4964</guid>
      <dc:creator>Nathaniel_C</dc:creator>
      <dc:date>2019-09-29T14:19:02Z</dc:date>
    </item>
    <item>
      <title>Re: Evaluating the difference of Hourly Meter Readings with DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Evaluating-the-difference-of-Hourly-Meter-Readings-with-DAX/m-p/805031#M4967</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="159166" data-lia-user-login="Nathaniel_C" class="lia-mention lia-mention-user"&gt;Nathaniel_C&lt;/a&gt;&amp;nbsp; great, thanks for your time, would compare your pbix with the results I got in excel. As your earlier mentioned the automatic refresh with same data format for other months would be the cool thing about the power bi model compared to excel.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank You&lt;/P&gt;</description>
      <pubDate>Sun, 29 Sep 2019 15:45:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Evaluating-the-difference-of-Hourly-Meter-Readings-with-DAX/m-p/805031#M4967</guid>
      <dc:creator>garbafarhan</dc:creator>
      <dc:date>2019-09-29T15:45:18Z</dc:date>
    </item>
    <item>
      <title>Re: Evaluating the difference of Hourly Meter Readings with DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Evaluating-the-difference-of-Hourly-Meter-Readings-with-DAX/m-p/805037#M4968</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="173729" data-lia-user-login="garbafarhan" class="lia-mention lia-mention-user"&gt;garbafarhan&lt;/a&gt;&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="114168" data-lia-user-login="kentyler" class="lia-mention lia-mention-user"&gt;kentyler&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the PBIX&amp;nbsp;&lt;A href="https://1drv.ms/u/s!AgCd7AyfqZtExlcjnqnn95SMRIIi?e=dAH9eB" target="_blank" rel="noopener"&gt;Difference in Meter Readings&lt;/A&gt;. The original data is in the first step, if you want to change it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The important steps after you import the data in Power Query:&lt;/P&gt;&lt;P&gt;1. Determine the unique identifier. (See previous message)&lt;/P&gt;&lt;P&gt;2 Sort the order so that the unique identifier is sorted, then sort the date.&amp;nbsp; This will give you each meter side by side and the times with the earlier first.&amp;nbsp;&lt;/P&gt;&lt;P&gt;3. Once you have them in proper order, THEN you insert the index.&amp;nbsp; This will capture the correct order so that PBI can use it to look to the previous step to get the answer that you need.&lt;/P&gt;&lt;P&gt;4. Load the data to Power BI and create the calc as a new column as shown in the message above.&lt;/P&gt;&lt;P&gt;5. Create visuals...I put a couple that may work for you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Let me know if you have any questions.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos are nice too.&lt;BR /&gt;Nathaniel&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 29 Sep 2019 16:36:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Evaluating-the-difference-of-Hourly-Meter-Readings-with-DAX/m-p/805037#M4968</guid>
      <dc:creator>Nathaniel_C</dc:creator>
      <dc:date>2019-09-29T16:36:13Z</dc:date>
    </item>
    <item>
      <title>Re: Evaluating the difference of Hourly Meter Readings with DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Evaluating-the-difference-of-Hourly-Meter-Readings-with-DAX/m-p/805546#M4982</link>
      <description>&lt;P&gt;Many thanks&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="159166" data-lia-user-login="Nathaniel_C" class="lia-mention lia-mention-user"&gt;Nathaniel_C&lt;/a&gt;&amp;nbsp;, worked!, See attached comparison with excel hourly differences. Would let you know if I have further questions.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks very much&lt;/P&gt;&lt;P&gt;Garba&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Sep 2019 09:55:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Evaluating-the-difference-of-Hourly-Meter-Readings-with-DAX/m-p/805546#M4982</guid>
      <dc:creator>garbafarhan</dc:creator>
      <dc:date>2019-09-30T09:55:37Z</dc:date>
    </item>
    <item>
      <title>Re: Evaluating the difference of Hourly Meter Readings with DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Evaluating-the-difference-of-Hourly-Meter-Readings-with-DAX/m-p/805645#M4988</link>
      <description>&lt;P&gt;Many thanks&amp;nbsp;&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="159166" data-lia-user-login="Nathaniel_C" class="lia-mention lia-mention-user"&gt;Nathaniel_C&lt;/a&gt;&amp;nbsp; it worked!. See picture below the power bi model hourly readings comparison with the excel values.&amp;nbsp; Would let you know if I have further questions.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank You.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Garba&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Sep 2019 12:49:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Evaluating-the-difference-of-Hourly-Meter-Readings-with-DAX/m-p/805645#M4988</guid>
      <dc:creator>garbafarhan</dc:creator>
      <dc:date>2019-09-30T12:49:04Z</dc:date>
    </item>
    <item>
      <title>Re: Evaluating the difference of Hourly Meter Readings with DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Evaluating-the-difference-of-Hourly-Meter-Readings-with-DAX/m-p/805754#M4990</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="173729" data-lia-user-login="garbafarhan" class="lia-mention lia-mention-user"&gt;garbafarhan&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;So it looks like we are differing by a time period.&amp;nbsp; Could it be data? My output is on the second hour.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos are nice too.&lt;BR /&gt;Nathaniel&lt;/P&gt;</description>
      <pubDate>Mon, 30 Sep 2019 14:38:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Evaluating-the-difference-of-Hourly-Meter-Readings-with-DAX/m-p/805754#M4990</guid>
      <dc:creator>Nathaniel_C</dc:creator>
      <dc:date>2019-09-30T14:38:37Z</dc:date>
    </item>
    <item>
      <title>Re: Evaluating the difference of Hourly Meter Readings with DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Evaluating-the-difference-of-Hourly-Meter-Readings-with-DAX/m-p/806560#M5011</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="159166" data-lia-user-login="Nathaniel_C" class="lia-mention lia-mention-user"&gt;Nathaniel_C&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="173729" data-lia-user-login="garbafarhan" class="lia-mention lia-mention-user"&gt;garbafarhan&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;So it looks like we are differing by a time period.&amp;nbsp; Could it be data? My output is on the second hour.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos are nice too.&lt;BR /&gt;Nathaniel&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="159166" data-lia-user-login="Nathaniel_C" class="lia-mention lia-mention-user"&gt;Nathaniel_C&lt;/a&gt;&amp;nbsp; I have had a look at the excel output again, and found out that next day difference between 23:00 and 00:00 hours was not properly connected, have corrected it and now I am having an exact match between your output and mine.&lt;/P&gt;&lt;P&gt;Many thanks for your help&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Garba&lt;/P&gt;</description>
      <pubDate>Tue, 01 Oct 2019 07:22:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Evaluating-the-difference-of-Hourly-Meter-Readings-with-DAX/m-p/806560#M5011</guid>
      <dc:creator>garbafarhan</dc:creator>
      <dc:date>2019-10-01T07:22:10Z</dc:date>
    </item>
  </channel>
</rss>

