<?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: Normalize Hourly Averages by the Daily Average in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Normalize-Hourly-Averages-by-the-Daily-Average/m-p/2834280#M90373</link>
    <description>&lt;P&gt;Sorry, my column labels are bit unclear.&amp;nbsp; The "total" column is a measure that averages the total of 2 other columns called Zone 3 and GS.FW...&amp;nbsp; Total is the average flow for each hour, over a given slicer date range.&amp;nbsp; However, I would like the average of all data &amp;amp; times, like the number 6,223 shown at the bottom of the Total column.&amp;nbsp; &amp;nbsp;Then I want to divide each hour by that number so I normalize on that number (the avg of all times and dates within the range).&amp;nbsp; &amp;nbsp;Everytime I try it, though, I just get 1.00 because averages only for that hour.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&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>Tue, 11 Oct 2022 14:21:35 GMT</pubDate>
    <dc:creator>JBGilbert</dc:creator>
    <dc:date>2022-10-11T14:21:35Z</dc:date>
    <item>
      <title>Normalize Hourly Averages by the Daily Average</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Normalize-Hourly-Averages-by-the-Daily-Average/m-p/2832337#M90260</link>
      <description>&lt;P&gt;I have a list of hourly data and using the slicer to average over a date range.&amp;nbsp; In the table below, I have the average hour-by-hour data shown in a table (measures).&amp;nbsp; At the bottom of the table is the average of all hours over the entire date range.&amp;nbsp; I would like to show the percentage (or ratio) for each hour divided by this average of all the data.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the table below, the first row would be 5,288 / 6,385 = 0.828&amp;nbsp; &amp;nbsp;Second row would be 5,226 / 6,385...&amp;nbsp; Everytime I try to do it, I just end up with 1.0.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your help&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>Tue, 11 Oct 2022 00:24:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Normalize-Hourly-Averages-by-the-Daily-Average/m-p/2832337#M90260</guid>
      <dc:creator>JBGilbert</dc:creator>
      <dc:date>2022-10-11T00:24:11Z</dc:date>
    </item>
    <item>
      <title>Re: Normalize Hourly Averages by the Daily Average</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Normalize-Hourly-Averages-by-the-Daily-Average/m-p/2832376#M90261</link>
      <description>&lt;P class="lia-align-justify"&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="454396" data-lia-user-login="JBGilbert" class="lia-mention lia-mention-user"&gt;JBGilbert&lt;/a&gt;,&lt;/P&gt;&lt;P class="lia-align-justify"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="lia-align-justify"&gt;Use the following DAX formula to create a new column:&lt;/P&gt;&lt;P class="lia-align-justify"&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="java"&gt;Average Ratio = 'Table'[Total]/AVERAGE('Table'[Total])&lt;/LI-CODE&gt;&lt;P class="lia-align-justify"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="lia-align-justify"&gt;&lt;img /&gt;&lt;/P&gt;&lt;P class="lia-align-justify"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="lia-align-justify"&gt;&lt;EM&gt;Works for you? Mark this post as a solution if it does!&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Oct 2022 01:12:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Normalize-Hourly-Averages-by-the-Daily-Average/m-p/2832376#M90261</guid>
      <dc:creator>Shaurya</dc:creator>
      <dc:date>2022-10-11T01:12:21Z</dc:date>
    </item>
    <item>
      <title>Re: Normalize Hourly Averages by the Daily Average</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Normalize-Hourly-Averages-by-the-Daily-Average/m-p/2834280#M90373</link>
      <description>&lt;P&gt;Sorry, my column labels are bit unclear.&amp;nbsp; The "total" column is a measure that averages the total of 2 other columns called Zone 3 and GS.FW...&amp;nbsp; Total is the average flow for each hour, over a given slicer date range.&amp;nbsp; However, I would like the average of all data &amp;amp; times, like the number 6,223 shown at the bottom of the Total column.&amp;nbsp; &amp;nbsp;Then I want to divide each hour by that number so I normalize on that number (the avg of all times and dates within the range).&amp;nbsp; &amp;nbsp;Everytime I try it, though, I just get 1.00 because averages only for that hour.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&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>Tue, 11 Oct 2022 14:21:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Normalize-Hourly-Averages-by-the-Daily-Average/m-p/2834280#M90373</guid>
      <dc:creator>JBGilbert</dc:creator>
      <dc:date>2022-10-11T14:21:35Z</dc:date>
    </item>
  </channel>
</rss>

