<?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: Create a table and chart for open and closed based on different conditions for past 5 months in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-table-and-chart-for-open-and-closed-based-on-different/m-p/3140924#M112158</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank upu for your reply&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need to build this chart and table (below chart in screenshot) based on dates and count&lt;/P&gt;&lt;P&gt;Please find the attached open and closed queries in the screenshot.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Open logic is different and closed logic is different&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Open logic is like count between the below&amp;nbsp; dates&amp;nbsp;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;5/1/22 to 10/31/22 (should show as oct count)&lt;/P&gt;&lt;P&gt;5/1/22 to 11/30/2022  &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Please suggest.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 19 Mar 2023 19:15:11 GMT</pubDate>
    <dc:creator>Suhasini1</dc:creator>
    <dc:date>2023-03-19T19:15:11Z</dc:date>
    <item>
      <title>Create a table and chart for open and closed based on different conditions for past 5 months</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-table-and-chart-for-open-and-closed-based-on-different/m-p/3135079#M111694</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Thanks in advance&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have to create open and closed count based on different conditions (but not on status column) for past 5 months&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Open condition: severity is critical or high and datecreated&amp;gt;5/1/2022 and dare created &amp;lt;10/31/2022 and automated close &amp;gt; 10/1/2022&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Got the counts like&amp;nbsp;&lt;/P&gt;&lt;P&gt;May 1&lt;/P&gt;&lt;P&gt;June 1&lt;/P&gt;&lt;P&gt;July 3&lt;/P&gt;&lt;P&gt;Aug 2&lt;/P&gt;&lt;P&gt;Sep 2&lt;/P&gt;&lt;P&gt;Oct 2 (so Oct count is 11)&lt;/P&gt;&lt;P&gt;Nov 18&lt;/P&gt;&lt;P&gt;Dec 16 ( based on&amp;nbsp; logic)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need to populate this as a table&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please give me some ideas&lt;/P&gt;</description>
      <pubDate>Thu, 16 Mar 2023 03:41:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-table-and-chart-for-open-and-closed-based-on-different/m-p/3135079#M111694</guid>
      <dc:creator>Suhasini1</dc:creator>
      <dc:date>2023-03-16T03:41:16Z</dc:date>
    </item>
    <item>
      <title>Re: Create a table and chart for open and closed based on different conditions for past 5 months</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-table-and-chart-for-open-and-closed-based-on-different/m-p/3135141#M111696</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="530666" data-lia-user-login="Suhasini1" class="lia-mention lia-mention-user"&gt;Suhasini1&lt;/a&gt; , What date you have, How do we know open and closed &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One is HR Way&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Power BI: HR Analytics - Employees as on Date : &lt;A href="https://youtu.be/e6Y-l_JtCq4" target="_blank"&gt;https://youtu.be/e6Y-l_JtCq4&lt;/A&gt; &lt;BR /&gt;&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;Another Inventory Way Running total of open -closed&lt;/P&gt;
&lt;P&gt;example&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Active Employees = calculate(distinctCOUNT(EmpData[ID]) , filter(EmpData, EmpData[Hire Date] &amp;lt;= max(Date[Date]) &amp;amp;&amp;amp; [Activity] = "Hire" ))&lt;BR /&gt;- calculate(distinctCOUNT(EmpData[ID]) , filter(EmpData, EmpData[Hire Date] &amp;lt;= max(Date[Date]) &amp;amp;&amp;amp; [Activity] = "Termination" ))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Mar 2023 04:34:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-table-and-chart-for-open-and-closed-based-on-different/m-p/3135141#M111696</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2023-03-16T04:34:10Z</dc:date>
    </item>
    <item>
      <title>Re: Create a table and chart for open and closed based on different conditions for past 5 months</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-table-and-chart-for-open-and-closed-based-on-different/m-p/3140924#M112158</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank upu for your reply&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need to build this chart and table (below chart in screenshot) based on dates and count&lt;/P&gt;&lt;P&gt;Please find the attached open and closed queries in the screenshot.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Open logic is different and closed logic is different&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Open logic is like count between the below&amp;nbsp; dates&amp;nbsp;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;5/1/22 to 10/31/22 (should show as oct count)&lt;/P&gt;&lt;P&gt;5/1/22 to 11/30/2022  &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Please suggest.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 19 Mar 2023 19:15:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-table-and-chart-for-open-and-closed-based-on-different/m-p/3140924#M112158</guid>
      <dc:creator>Suhasini1</dc:creator>
      <dc:date>2023-03-19T19:15:11Z</dc:date>
    </item>
  </channel>
</rss>

