<?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: Tickets Backlog Calculation through DAX in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Tickets-Backlog-Calculation-through-DAX/m-p/1163678#M17860</link>
    <description>&lt;P&gt;I don't have a date table there,I just have created a date and closed date for tickets and a unique Incident ID.&lt;/P&gt;&lt;P&gt;My data source is excel here, which i am sharing here.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;A href="https://drive.google.com/file/d/19FgyDs08aZvWE848lvZzSYMLOzqCjOgm/view?usp=sharing" target="_self"&gt;Click to open file&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 16 Jun 2020 16:39:54 GMT</pubDate>
    <dc:creator>rohitchouhan</dc:creator>
    <dc:date>2020-06-16T16:39:54Z</dc:date>
    <item>
      <title>Tickets Backlog Calculation through DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Tickets-Backlog-Calculation-through-DAX/m-p/1160621#M17797</link>
      <description>&lt;P&gt;Based on the first 3 columns(Image Attached),&amp;nbsp; I am calculating Backlog for each day in excel, now I am moving to Power BI and new here.&lt;BR /&gt;Using DAX how can I calculate Backlog from the first 3 columns in Power BI.&lt;BR /&gt;I have Incident ID, Created Date and Closed Date column , and I want Backlog of each day.&lt;BR /&gt;Kindly suggest&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Thankyou&lt;/P&gt;</description>
      <pubDate>Mon, 15 Jun 2020 16:40:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Tickets-Backlog-Calculation-through-DAX/m-p/1160621#M17797</guid>
      <dc:creator>rohitchouhan</dc:creator>
      <dc:date>2020-06-15T16:40:03Z</dc:date>
    </item>
    <item>
      <title>Re: Tickets Backlog Calculation through DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Tickets-Backlog-Calculation-through-DAX/m-p/1161461#M17817</link>
      <description>&lt;P&gt;Assuming you have a Date table (e.g., with your Date Index from visual), you could try an expression like this to get the # of open items on any given day (in a table visual with your 'Date'[Date] column).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Open Incidents =
VAR __thisdate =
    MIN ( 'Date'[Date] ) //assuming you have one date in context min, max, sum won't matter
RETURN
    CALCULATE (
        COUNTROWS ( Table ),
        ALL ( Table ),
        Table[Created Date] &amp;lt;= __thisdate,
        Table[Closed Date] &amp;gt; __thisdate
    )&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this works for you, please mark it as the solution.&amp;nbsp; Kudos are appreciated too.&amp;nbsp; Please let me know if not.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pat&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jun 2020 02:01:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Tickets-Backlog-Calculation-through-DAX/m-p/1161461#M17817</guid>
      <dc:creator>mahoneypat</dc:creator>
      <dc:date>2020-06-16T02:01:37Z</dc:date>
    </item>
    <item>
      <title>Re: Tickets Backlog Calculation through DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Tickets-Backlog-Calculation-through-DAX/m-p/1162542#M17837</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="226208" data-lia-user-login="mahoneypat" class="lia-mention lia-mention-user"&gt;mahoneypat&lt;/a&gt;&amp;nbsp; this is not working.&lt;BR /&gt;my input data is first 3 column and result I want is the last column(Backlog).&lt;BR /&gt;also can you temm how to add date index through DAX&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jun 2020 09:23:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Tickets-Backlog-Calculation-through-DAX/m-p/1162542#M17837</guid>
      <dc:creator>rohitchouhan</dc:creator>
      <dc:date>2020-06-16T09:23:45Z</dc:date>
    </item>
    <item>
      <title>Re: Tickets Backlog Calculation through DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Tickets-Backlog-Calculation-through-DAX/m-p/1162655#M17841</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="235382" data-lia-user-login="rohitchouhan" class="lia-mention lia-mention-user"&gt;rohitchouhan&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;Backlog =&lt;BR /&gt;var ClosedTckts = CALCULATE(COUNT('Table'[Close Date]),USERELATIONSHIP('Date'[Date],'Table'[Close Date]))&lt;BR /&gt;&lt;BR /&gt;var OpenTckts= CALCULATE(COUNT('Table'[Open Date]),USERELATIONSHIP('Date'[Date],'Table'[Open Date]))&lt;BR /&gt;&lt;BR /&gt;var Difference = ClosedTckts - OpenTckts&lt;BR /&gt;&lt;BR /&gt;var Cumulative = FILTER(ALL('Date'),'Date'[Date]&amp;lt;=MAX('Date'[Date]))&lt;BR /&gt;&lt;BR /&gt;var Backlog = CALCULATE(&lt;BR /&gt;SUMX('Date', Difference),&lt;BR /&gt;Cumulative)&lt;BR /&gt;&lt;BR /&gt;return&lt;BR /&gt;Backlog&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Harsh Nathani&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Did I answer your question? Mark my post as a solution! Appreciate with a Kudos!! (Click the Thumbs Up Button)&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jun 2020 09:55:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Tickets-Backlog-Calculation-through-DAX/m-p/1162655#M17841</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-06-16T09:55:03Z</dc:date>
    </item>
    <item>
      <title>Re: Tickets Backlog Calculation through DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Tickets-Backlog-Calculation-through-DAX/m-p/1162821#M17844</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp; Hello sir, thanks for reply&lt;BR /&gt;what to to put here in place of&amp;nbsp;&lt;EM&gt;&lt;STRONG&gt;('Date'[Date],&amp;nbsp;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/EM&gt;kindly help&lt;BR /&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jun 2020 10:56:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Tickets-Backlog-Calculation-through-DAX/m-p/1162821#M17844</guid>
      <dc:creator>rohitchouhan</dc:creator>
      <dc:date>2020-06-16T10:56:46Z</dc:date>
    </item>
    <item>
      <title>Re: Tickets Backlog Calculation through DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Tickets-Backlog-Calculation-through-DAX/m-p/1163593#M17859</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="235382" data-lia-user-login="rohitchouhan" class="lia-mention lia-mention-user"&gt;rohitchouhan&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Assuming that you have a Date Table.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you share some sample data and your Data Model&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Harsh Nathani&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jun 2020 16:01:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Tickets-Backlog-Calculation-through-DAX/m-p/1163593#M17859</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-06-16T16:01:51Z</dc:date>
    </item>
    <item>
      <title>Re: Tickets Backlog Calculation through DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Tickets-Backlog-Calculation-through-DAX/m-p/1163678#M17860</link>
      <description>&lt;P&gt;I don't have a date table there,I just have created a date and closed date for tickets and a unique Incident ID.&lt;/P&gt;&lt;P&gt;My data source is excel here, which i am sharing here.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;A href="https://drive.google.com/file/d/19FgyDs08aZvWE848lvZzSYMLOzqCjOgm/view?usp=sharing" target="_self"&gt;Click to open file&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jun 2020 16:39:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Tickets-Backlog-Calculation-through-DAX/m-p/1163678#M17860</guid>
      <dc:creator>rohitchouhan</dc:creator>
      <dc:date>2020-06-16T16:39:54Z</dc:date>
    </item>
    <item>
      <title>Re: Tickets Backlog Calculation through DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Tickets-Backlog-Calculation-through-DAX/m-p/3471476#M132554</link>
      <description>&lt;P&gt;Can you please help me with this we you have the solution?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Oct 2023 14:51:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Tickets-Backlog-Calculation-through-DAX/m-p/3471476#M132554</guid>
      <dc:creator>DiKi-I</dc:creator>
      <dc:date>2023-10-11T14:51:16Z</dc:date>
    </item>
    <item>
      <title>Re: Tickets Backlog Calculation through DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Tickets-Backlog-Calculation-through-DAX/m-p/3503254#M134362</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="235382" data-lia-user-login="rohitchouhan" class="lia-mention lia-mention-user"&gt;rohitchouhan&lt;/a&gt;&amp;nbsp;Do you have the solution, can you share it with me?&lt;/P&gt;</description>
      <pubDate>Sun, 29 Oct 2023 16:10:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Tickets-Backlog-Calculation-through-DAX/m-p/3503254#M134362</guid>
      <dc:creator>DiKi-I</dc:creator>
      <dc:date>2023-10-29T16:10:56Z</dc:date>
    </item>
  </channel>
</rss>

