<?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: Rolling 12 Month Average for Injuries in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-12-Month-Average-for-Injuries/m-p/1187350#M18709</link>
    <description>&lt;P&gt;Steve and others, I've spent hours recreating this over the last day and a half with ficticuous data.&amp;nbsp; I created an open one drive link to see the files and here's how it's laid out.&lt;/P&gt;&lt;P&gt;1 - there's a file in the folder called Excel Example - Look Here First - Please look at that first to see what it looks like created in excel&lt;/P&gt;&lt;P&gt;2 - I created a new PBIX file with the tables and measures set up exactly like how I started (the problem is the same)&lt;/P&gt;&lt;P&gt;3 - The source files for injuries and hours are there&lt;/P&gt;&lt;P&gt;4 - I added some commentary&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please - if anyone could assist with this, I'd really appreciate it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A title="PBIX &amp;amp; Doc Example" href="https://1drv.ms/u/s!Ag-g0BcIy_d1grR3TD3dGKzTZtAnJg?e=vQc4pt" target="_self"&gt;https://1drv.ms/u/s!Ag-g0BcIy_d1grR3TD3dGKzTZtAnJg?e=vQc4pt&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 28 Jun 2020 16:34:40 GMT</pubDate>
    <dc:creator>sfalk781</dc:creator>
    <dc:date>2020-06-28T16:34:40Z</dc:date>
    <item>
      <title>Rolling 12 Month Average for Injuries</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-12-Month-Average-for-Injuries/m-p/1179639#M18355</link>
      <description>&lt;P&gt;Here's one that I just can't figure out and am wondering if you could help me.&amp;nbsp; I'm coming from excel and just learning.&amp;nbsp; I have an injury table that has all of the injuries that occured for a given period including date and other attributes.&amp;nbsp; I also have a separate hours table that has all hours worked by a location.&amp;nbsp; The incidents have individual dates but the hours don't because the source where I calculate them from only sends them once per month.&amp;nbsp; Note that Incidents and Hours are linked with a location.&amp;nbsp; For this reason, I also have a date dimension table that normalizes both the injury and hours table down to "month-year".&amp;nbsp; All of this is linked together within the model tab so that the relationships have been established.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I wrote a formula in DAX that calculates the incident rate for a given type of injury called "Recordable Injury" which is (injuries x 200,000)/Total Hours Worked.&amp;nbsp; Here's what it looks like and I tested that it is working.&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;TRIR = DIVIDE(CALCULATE(COUNT(INJ[Incident Type]),'INJ'[Incident Type] IN { "Recordable Injury" } )*200000,sum('Emp Hours Raw'[HOURS]))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;What can I add to this formula to get it to look back over the previous 12 months so that it's a rolling calculation?&amp;nbsp; Also, since the incidents have individual dates, but the hours don't (both of these are connected via month - years) how does that influence this calculation?&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 24 Jun 2020 14:39:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-12-Month-Average-for-Injuries/m-p/1179639#M18355</guid>
      <dc:creator>sfalk781</dc:creator>
      <dc:date>2020-06-24T14:39:18Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling 12 Month Average for Injuries</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-12-Month-Average-for-Injuries/m-p/1180485#M18387</link>
      <description>&lt;P&gt;Any serious date math requires a dates table. That table needs to be contiguous and covering.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The injury data already has dates, but (hopefully) not contiguous. For the hours table you can use a trick to assign an arbitrary day in the month to the data (say, always first day of the month, or always last day of the month).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That way you can tie both the incidents and the hours lookup to the dates table, and then you can do the YoY or rolling measures etc much easier.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jun 2020 20:36:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-12-Month-Average-for-Injuries/m-p/1180485#M18387</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2020-06-24T20:36:33Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling 12 Month Average for Injuries</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-12-Month-Average-for-Injuries/m-p/1180540#M18388</link>
      <description>&lt;P&gt;calculate([trir];datesinperiod([date];-12;month))&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jun 2020 21:13:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-12-Month-Average-for-Injuries/m-p/1180540#M18388</guid>
      <dc:creator>stevedep</dc:creator>
      <dc:date>2020-06-24T21:13:32Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling 12 Month Average for Injuries</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-12-Month-Average-for-Injuries/m-p/1182595#M18500</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="4037" data-lia-user-login="stevedep" class="lia-mention lia-mention-user"&gt;stevedep&lt;/a&gt;&amp;nbsp;and others, I tried to use the formula provided but it was giving me constant errors with the semicolon.&amp;nbsp; I'm not sure if they're supposed to be there or not.&amp;nbsp; &amp;nbsp;Separately, my dimdate table is attached.&amp;nbsp; The INJ table has a "month-year" column as well and that's how the two are linked together.&amp;nbsp; Is doing this even possible this way without creating a complete calendar table covering years of data?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;After a day and a half of searching, I was able to come up with this formula:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;TRIR = Divide(calculate(COUNT(INJ[Incident Type]),'INJ'[Incident Type] IN { "Recordable Injury" } )*200000,sum('Emp Hours Raw'[HOURS]),DATESINPERIOD(DimDate[MonthYear],lastdate(DimDate[MonthYear]),-12,MONTH))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but it still doesn't work.&amp;nbsp; It's saying that "A column specified in the call to function "Last Date" is not of type DATE."&amp;nbsp; Seeing this, I went in to the dimtable and changed Month-Year from text to date, but then its erroring again with&amp;nbsp; "the alternate result to return to divide by zero cases must be a constant numeric value".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any other suggestions based on this update?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Thu, 25 Jun 2020 13:46:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-12-Month-Average-for-Injuries/m-p/1182595#M18500</guid>
      <dc:creator>sfalk781</dc:creator>
      <dc:date>2020-06-25T13:46:46Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling 12 Month Average for Injuries</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-12-Month-Average-for-Injuries/m-p/1182914#M18509</link>
      <description>&lt;P&gt;Month year is not a date is just a number which reflects the month year.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jun 2020 16:02:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-12-Month-Average-for-Injuries/m-p/1182914#M18509</guid>
      <dc:creator>stevedep</dc:creator>
      <dc:date>2020-06-25T16:02:53Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling 12 Month Average for Injuries</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-12-Month-Average-for-Injuries/m-p/1183303#M18532</link>
      <description>&lt;P&gt;&lt;A href="https://www.sqlbi.com/articles/creating-a-simple-date-table-in-dax/" target="_blank"&gt;https://www.sqlbi.com/articles/creating-a-simple-date-table-in-dax/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jun 2020 20:31:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-12-Month-Average-for-Injuries/m-p/1183303#M18532</guid>
      <dc:creator>stevedep</dc:creator>
      <dc:date>2020-06-25T20:31:31Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling 12 Month Average for Injuries</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-12-Month-Average-for-Injuries/m-p/1183554#M18550</link>
      <description>&lt;P&gt;Thanks for your help so far.&amp;nbsp; I've gone back in and added a date column to my date dimension table and linked it to the relevant data sources.&amp;nbsp; Now there's a specific date instead of using month year.&amp;nbsp; I modified the TRIR calculation to read as follows:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;TRIR2 = Divide(calculate(COUNT(INJ[Incident Type]),'INJ'[Incident Type] IN { "Recordable Injury" } )*200000,sum('Emp Hours Raw'[HOURS]),DATESINPERIOD('DimDate (2)'[Calendar Date],lastdate('DimDate (2)'[Calendar Date]),-12,MONTH))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;First question is; does it look right for a rolling 12 month calculation?&amp;nbsp; Next, when I added this to a visual, it errors with "Calculation Error in TRIR2 the alternate result to return on divide by zero cases must be a constant numeric value".&amp;nbsp; Does this mean that a zero is needed somewhere in the formula and if so, where?&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 25 Jun 2020 23:17:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-12-Month-Average-for-Injuries/m-p/1183554#M18550</guid>
      <dc:creator>sfalk781</dc:creator>
      <dc:date>2020-06-25T23:17:10Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling 12 Month Average for Injuries</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-12-Month-Average-for-Injuries/m-p/1183940#M18565</link>
      <description>&lt;P&gt;Is your date filter a parameter in your divide statement?&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jun 2020 04:24:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-12-Month-Average-for-Injuries/m-p/1183940#M18565</guid>
      <dc:creator>stevedep</dc:creator>
      <dc:date>2020-06-26T04:24:48Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling 12 Month Average for Injuries</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-12-Month-Average-for-Injuries/m-p/1185062#M18586</link>
      <description>&lt;P&gt;Steve,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I apologize, but I'm not really sure what you mean by "parameter"?&amp;nbsp; The only thing I know is the formula that I wrote which is:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;TRIR2 = Divide(calculate(COUNT(INJ[Incident Type]),'INJ'[Incident Type] IN { "Recordable Injury" } )*200000,sum('Emp Hours Raw'[HOURS]),DATESINPERIOD('DimDate (2)'[Calendar Date],lastdate('DimDate (2)'[Calendar Date]),-12,MONTH))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there anything else I can provide to help get closer to solving this?&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jun 2020 12:15:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-12-Month-Average-for-Injuries/m-p/1185062#M18586</guid>
      <dc:creator>sfalk781</dc:creator>
      <dc:date>2020-06-26T12:15:35Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling 12 Month Average for Injuries</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-12-Month-Average-for-Injuries/m-p/1185135#M18589</link>
      <description>&lt;P&gt;&lt;SPAN&gt;TRIR2 = &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Divide(&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN&gt;calculate(&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="lia-indent-padding-left-60px"&gt;&lt;SPAN&gt;COUNT(INJ[Incident Type])&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="lia-indent-padding-left-60px"&gt;&lt;SPAN&gt;,'INJ'[Incident Type] IN { "Recordable Injury" } // filter for calculate&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="lia-indent-padding-left-60px"&gt;&lt;SPAN&gt;)*200000&amp;nbsp; // outcome of calculate * 2000&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN&gt;sum('Emp Hours Raw'[HOURS] // should be wrapped with calculate for context transition?&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN&gt;) // this concludes the division&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;// the below part is outside of your division statement, causing the error&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;,DATESINPERIOD('DimDate (2)'[Calendar Date],lastdate('DimDate (2)'[Calendar Date]),-12,MONTH))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;datesinperiod should is a filter, which is a input / parameter for a calculate statement.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jun 2020 12:51:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-12-Month-Average-for-Injuries/m-p/1185135#M18589</guid>
      <dc:creator>stevedep</dc:creator>
      <dc:date>2020-06-26T12:51:34Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling 12 Month Average for Injuries</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-12-Month-Average-for-Injuries/m-p/1185614#M18610</link>
      <description>&lt;P&gt;Steve,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm still struggling with this. I think what you're saying is that the Datesinperiod is outside the division causing the problem.&amp;nbsp; Does this mean that it should be somewhere else near the front?&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When you say "&lt;SPAN&gt;should be wrapped with calculate for context transition?" are you asking me or others?&amp;nbsp; Is there any suggestion on how to reformulate this so that it works? I'm dead stopped with this.&amp;nbsp; The existing formula is below.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;TRIR2 = Divide(calculate(COUNT(INJ[Incident Type]),'INJ'[Incident Type] IN { "Recordable Injury" } )*200000,sum('Emp Hours Raw'[HOURS]),DATESINPERIOD('DimDate (2)'[Calendar Date],lastdate('DimDate (2)'[Calendar Date]),-12,MONTH))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;thanks again for helping.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 26 Jun 2020 16:15:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-12-Month-Average-for-Injuries/m-p/1185614#M18610</guid>
      <dc:creator>sfalk781</dc:creator>
      <dc:date>2020-06-26T16:15:13Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling 12 Month Average for Injuries</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-12-Month-Average-for-Injuries/m-p/1186526#M18663</link>
      <description>&lt;P&gt;Does anyone have any other ideas on how I could possibly change this formula so that it works based on the information provided here?&amp;nbsp; Thanks again for your help.&lt;/P&gt;</description>
      <pubDate>Sat, 27 Jun 2020 13:32:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-12-Month-Average-for-Injuries/m-p/1186526#M18663</guid>
      <dc:creator>sfalk781</dc:creator>
      <dc:date>2020-06-27T13:32:45Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling 12 Month Average for Injuries</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-12-Month-Average-for-Injuries/m-p/1186638#M18669</link>
      <description>&lt;P&gt;I am not sure without a sample file, but perhaps this works:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;TRIR2 = 
calculate(
  Divide(
   COUNT(INJ[Incident Type]),'INJ'[Incident Type] IN { "Recordable Injury" } )*200000,
   sum('Emp Hours Raw'[HOURS]
   ),DATESINPERIOD('DimDate (2)'[Calendar Date],lastdate('DimDate (2)'[Calendar Date]),-12,MONTH)&lt;/LI-CODE&gt;</description>
      <pubDate>Sat, 27 Jun 2020 15:44:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-12-Month-Average-for-Injuries/m-p/1186638#M18669</guid>
      <dc:creator>stevedep</dc:creator>
      <dc:date>2020-06-27T15:44:08Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling 12 Month Average for Injuries</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-12-Month-Average-for-Injuries/m-p/1186729#M18674</link>
      <description>&lt;P&gt;I tried the proposed suggestion and it seems that the only difference is that we're swapping the calculate and divide at the front end and dropping a parenthesis at the end.&amp;nbsp; When doing this, it gives an error that says "A function 'sum' has been used in a True/False expression that is used as a table filter expression. This is not allowed."&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When using this proposed formula, it's recognizing the first comma as the separation beween the numerator and denominator.&amp;nbsp; I'm still stuck with this.&amp;nbsp; Any other ideas?&lt;/P&gt;</description>
      <pubDate>Sat, 27 Jun 2020 18:54:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-12-Month-Average-for-Injuries/m-p/1186729#M18674</guid>
      <dc:creator>sfalk781</dc:creator>
      <dc:date>2020-06-27T18:54:03Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling 12 Month Average for Injuries</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-12-Month-Average-for-Injuries/m-p/1186739#M18676</link>
      <description>&lt;P&gt;TRIR2 = calculate(&lt;BR /&gt;Divide(&lt;BR /&gt;COUNT(INJ[Incident Type]),'INJ'[Incident Type] IN { "Recordable Injury" } )*200000, sum('Emp Hours Raw'[HOURS] ),&lt;BR /&gt;Filter (all(dimdate (2)),&lt;BR /&gt;DATESINPERIOD('DimDate (2)'[Calendar Date],lastdate('DimDate (2)'[Calendar Date]),-12,MONTH))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this does not work, I suggest to share a sample file.&lt;/P&gt;</description>
      <pubDate>Sat, 27 Jun 2020 19:07:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-12-Month-Average-for-Injuries/m-p/1186739#M18676</guid>
      <dc:creator>stevedep</dc:creator>
      <dc:date>2020-06-27T19:07:55Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling 12 Month Average for Injuries</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-12-Month-Average-for-Injuries/m-p/1186750#M18677</link>
      <description>&lt;P&gt;Steve, still the same problem.&amp;nbsp; Should I create a new PBIX file with anonymized data?&amp;nbsp; If so, how do I upload it - I can't seem to find how to do it?&lt;/P&gt;</description>
      <pubDate>Sat, 27 Jun 2020 19:34:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-12-Month-Average-for-Injuries/m-p/1186750#M18677</guid>
      <dc:creator>sfalk781</dc:creator>
      <dc:date>2020-06-27T19:34:29Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling 12 Month Average for Injuries</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-12-Month-Average-for-Injuries/m-p/1186762#M18678</link>
      <description>&lt;P&gt;&lt;A href="https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490" target="_blank"&gt;https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.powerbi.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-p/963216" target="_blank"&gt;https://community.powerbi.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-p/963216&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sharing file is even better. Onedrive&lt;/P&gt;</description>
      <pubDate>Sat, 27 Jun 2020 19:46:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-12-Month-Average-for-Injuries/m-p/1186762#M18678</guid>
      <dc:creator>stevedep</dc:creator>
      <dc:date>2020-06-27T19:46:46Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling 12 Month Average for Injuries</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-12-Month-Average-for-Injuries/m-p/1187350#M18709</link>
      <description>&lt;P&gt;Steve and others, I've spent hours recreating this over the last day and a half with ficticuous data.&amp;nbsp; I created an open one drive link to see the files and here's how it's laid out.&lt;/P&gt;&lt;P&gt;1 - there's a file in the folder called Excel Example - Look Here First - Please look at that first to see what it looks like created in excel&lt;/P&gt;&lt;P&gt;2 - I created a new PBIX file with the tables and measures set up exactly like how I started (the problem is the same)&lt;/P&gt;&lt;P&gt;3 - The source files for injuries and hours are there&lt;/P&gt;&lt;P&gt;4 - I added some commentary&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please - if anyone could assist with this, I'd really appreciate it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A title="PBIX &amp;amp; Doc Example" href="https://1drv.ms/u/s!Ag-g0BcIy_d1grR3TD3dGKzTZtAnJg?e=vQc4pt" target="_self"&gt;https://1drv.ms/u/s!Ag-g0BcIy_d1grR3TD3dGKzTZtAnJg?e=vQc4pt&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 28 Jun 2020 16:34:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-12-Month-Average-for-Injuries/m-p/1187350#M18709</guid>
      <dc:creator>sfalk781</dc:creator>
      <dc:date>2020-06-28T16:34:40Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling 12 Month Average for Injuries</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-12-Month-Average-for-Injuries/m-p/1187452#M18712</link>
      <description>&lt;P&gt;Thanks, I will help you tomorrow, should be easy to get in order.&lt;/P&gt;</description>
      <pubDate>Sun, 28 Jun 2020 19:17:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-12-Month-Average-for-Injuries/m-p/1187452#M18712</guid>
      <dc:creator>stevedep</dc:creator>
      <dc:date>2020-06-28T19:17:14Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling 12 Month Average for Injuries</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-12-Month-Average-for-Injuries/m-p/1193422#M18948</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="4037" data-lia-user-login="stevedep" class="lia-mention lia-mention-user"&gt;stevedep&lt;/a&gt;&amp;nbsp;Just checking back in with this to see if anyone had a chance to try and figure this out?&amp;nbsp; I worked through the weekend on it&amp;nbsp;and am no further than I was before.&amp;nbsp; It's showing the same exact error in the sample I provided as well as the real dataset.&amp;nbsp; Any help is greatly appreciated.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jun 2020 21:26:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-12-Month-Average-for-Injuries/m-p/1193422#M18948</guid>
      <dc:creator>sfalk781</dc:creator>
      <dc:date>2020-06-30T21:26:07Z</dc:date>
    </item>
  </channel>
</rss>

