<?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 Creating a line graph with current active tickets in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Creating-a-line-graph-with-current-active-tickets/m-p/3200079#M116298</link>
    <description>&lt;P&gt;Hi there&lt;/P&gt;&lt;P&gt;I love power bi but for this time a struggling how to solve the next problem. I have a table where I have starting date and an end date where problem is fixed.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to create a line graph based on dates where I can see how many ticket are active on any current date as they fall between start and end date or are still active as there is no end. Can anybody help me out&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For the moment I did not connect the table to a date table&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;Eric&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 21 Apr 2023 13:25:03 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2023-04-21T13:25:03Z</dc:date>
    <item>
      <title>Creating a line graph with current active tickets</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Creating-a-line-graph-with-current-active-tickets/m-p/3200079#M116298</link>
      <description>&lt;P&gt;Hi there&lt;/P&gt;&lt;P&gt;I love power bi but for this time a struggling how to solve the next problem. I have a table where I have starting date and an end date where problem is fixed.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to create a line graph based on dates where I can see how many ticket are active on any current date as they fall between start and end date or are still active as there is no end. Can anybody help me out&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For the moment I did not connect the table to a date table&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;Eric&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Apr 2023 13:25:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Creating-a-line-graph-with-current-active-tickets/m-p/3200079#M116298</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-04-21T13:25:03Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a line graph with current active tickets</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Creating-a-line-graph-with-current-active-tickets/m-p/3200399#M116317</link>
      <description>&lt;P&gt;You don't need a relationship with the date table, just use&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Active cases =
VAR RefDate =
    MAX ( 'Date'[Date] )
RETURN
    CALCULATE (
        COUNTROWS ( 'Table' ),
        'Table'[Start date] &amp;lt;= RefDate
            &amp;amp;&amp;amp; (
                ISBLANK ( 'Table'[End date] )
                    || 'Table'[End date] &amp;gt; RefDate
            )
    )
&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 21 Apr 2023 15:28:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Creating-a-line-graph-with-current-active-tickets/m-p/3200399#M116317</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2023-04-21T15:28:30Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a line graph with current active tickets</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Creating-a-line-graph-with-current-active-tickets/m-p/3200533#M116326</link>
      <description>&lt;P&gt;I can jump through hoops, it works perfectly&lt;/P&gt;&lt;P&gt;Thanks very much, I can now go to bed and have a peacefull night&lt;/P&gt;&lt;DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 21 Apr 2023 17:13:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Creating-a-line-graph-with-current-active-tickets/m-p/3200533#M116326</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-04-21T17:13:03Z</dc:date>
    </item>
  </channel>
</rss>

