<?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 count last 13 month by processing time in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-count-last-13-month-by-processing-time/m-p/1755204#M36624</link>
    <description>&lt;P&gt;Thanks for reply, I'll check tomorrow.&lt;/P&gt;</description>
    <pubDate>Tue, 30 Mar 2021 15:24:12 GMT</pubDate>
    <dc:creator>hmo</dc:creator>
    <dc:date>2021-03-30T15:24:12Z</dc:date>
    <item>
      <title>Rolling count last 13 month by processing time</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-count-last-13-month-by-processing-time/m-p/1754382#M36605</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;we have a system with error tickets whose processing time we monitor. The tickets have a start date and an end date. We need to calculate on a rolling basis for the last thirteen months how many tickets have met the runtime target (&amp;lt;=45 days), how many have met the maximum runtime (&amp;gt;45, &amp;gt;=180 days) and how many have exceeded the maximum runtime (&amp;gt;180 days).&lt;BR /&gt;I tried a few things in Power BI, but couldn't get it to work.&lt;/P&gt;&lt;P&gt;I have implemented this in Excel for illustration purposes and deposited it at the link below.&lt;/P&gt;&lt;P&gt;&lt;A title="ressources" href="https://drive.google.com/drive/folders/1UyDjtjScJxHRZLh_8eevhxrycSXqtBZA?usp=sharing" target="_self"&gt;https://drive.google.com/drive/folders/1UyDjtjScJxHRZLh_8eevhxrycSXqtBZA?usp=sharing&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Mar 2021 10:32:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-count-last-13-month-by-processing-time/m-p/1754382#M36605</guid>
      <dc:creator>hmo</dc:creator>
      <dc:date>2021-03-30T10:32:59Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling count last 13 month by processing time</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-count-last-13-month-by-processing-time/m-p/1755166#M36621</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="278858" data-lia-user-login="hmo" class="lia-mention lia-mention-user"&gt;hmo&lt;/a&gt; , You have create a measure like this with a independent date table&lt;/P&gt;
&lt;P&gt;Meausre =&lt;BR /&gt;var _max = if( isblank(max(Table[closed_on])) || max(Table[closed_on]) &amp;gt;Max(Date[Date]) , Max(Date[Date]), max(Table[closed_on]))&lt;BR /&gt;var _min = if( min(Table[date_of_creation]) &amp;lt;Min(Date[Date]) , Min(Date[Date]), max(Table[date_of_creation]))&lt;BR /&gt;return &lt;BR /&gt;datediff(_min,_max, days)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Very similar to this but do not join - &lt;A href="https://community.powerbi.com/t5/Community-Blog/HR-Analytics-Active-Employee-Hire-and-Termination-trend/ba-p/882970" target="_blank"&gt;https://community.powerbi.com/t5/Community-Blog/HR-Analytics-Active-Employee-Hire-and-Termination-trend/ba-p/882970&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The next step is to create an independent range table and using group by ticket_number, create a new measure to use this new table. Refer to this video - &lt;A href="https://youtu.be/CuczXPj0N-k" target="_blank"&gt;https://youtu.be/CuczXPj0N-k&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Mar 2021 15:11:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-count-last-13-month-by-processing-time/m-p/1755166#M36621</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2021-03-30T15:11:29Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling count last 13 month by processing time</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-count-last-13-month-by-processing-time/m-p/1755204#M36624</link>
      <description>&lt;P&gt;Thanks for reply, I'll check tomorrow.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Mar 2021 15:24:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-count-last-13-month-by-processing-time/m-p/1755204#M36624</guid>
      <dc:creator>hmo</dc:creator>
      <dc:date>2021-03-30T15:24:12Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling count last 13 month by processing time</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-count-last-13-month-by-processing-time/m-p/1759774#M36788</link>
      <description>&lt;P&gt;I'm sorry, I don't understand. I'm not good enough at Power BI.&lt;/P&gt;&lt;P&gt;I do not understand what the above Measure brings for a result and what I should do with it.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Apr 2021 11:30:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-count-last-13-month-by-processing-time/m-p/1759774#M36788</guid>
      <dc:creator>hmo</dc:creator>
      <dc:date>2021-04-01T11:30:23Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling count last 13 month by processing time</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-count-last-13-month-by-processing-time/m-p/1763675#M36931</link>
      <description>&lt;P&gt;Can anyone else help here?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;</description>
      <pubDate>Mon, 05 Apr 2021 10:06:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-count-last-13-month-by-processing-time/m-p/1763675#M36931</guid>
      <dc:creator>hmo</dc:creator>
      <dc:date>2021-04-05T10:06:23Z</dc:date>
    </item>
  </channel>
</rss>

