<?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 DAX measure for staff turnover in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-measure-for-staff-turnover/m-p/2796671#M87891</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to create a measure (DAX) that calculates the staff turnover rate for me the formula I am using is no. of employees resigned divided by the average no. of employees in a period (actual column names - no. of resources resigned/ (no. of emp at start of the month + no. of emp at end of month/2)).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;NOTE:&lt;/STRONG&gt;&lt;/U&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;the no. of emp at the start and end of the month is Jan and whichever month is currently going on (it must be dynamic and work as system date)&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Currently, in the pbix file I have figured out how to calculate the emp count at the start of the month, however, I want a complete formula not like creating a separate formula for each component and I'm unable to figure it out.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Request you to help me with this. Below is the link to the file for reference.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://t.ly/SL74" target="_blank" rel="noopener"&gt;https://t.ly/SL74&lt;/A&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks in advance.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 26 Sep 2022 14:07:03 GMT</pubDate>
    <dc:creator>LearnPowerBI5</dc:creator>
    <dc:date>2022-09-26T14:07:03Z</dc:date>
    <item>
      <title>DAX measure for staff turnover</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-measure-for-staff-turnover/m-p/2796671#M87891</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to create a measure (DAX) that calculates the staff turnover rate for me the formula I am using is no. of employees resigned divided by the average no. of employees in a period (actual column names - no. of resources resigned/ (no. of emp at start of the month + no. of emp at end of month/2)).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;NOTE:&lt;/STRONG&gt;&lt;/U&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;the no. of emp at the start and end of the month is Jan and whichever month is currently going on (it must be dynamic and work as system date)&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Currently, in the pbix file I have figured out how to calculate the emp count at the start of the month, however, I want a complete formula not like creating a separate formula for each component and I'm unable to figure it out.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Request you to help me with this. Below is the link to the file for reference.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://t.ly/SL74" target="_blank" rel="noopener"&gt;https://t.ly/SL74&lt;/A&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks in advance.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Sep 2022 14:07:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-measure-for-staff-turnover/m-p/2796671#M87891</guid>
      <dc:creator>LearnPowerBI5</dc:creator>
      <dc:date>2022-09-26T14:07:03Z</dc:date>
    </item>
    <item>
      <title>Re: DAX measure for staff turnover</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-measure-for-staff-turnover/m-p/2798263#M87988</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="427697" data-lia-user-login="LearnPowerBI5" class="lia-mention lia-mention-user"&gt;LearnPowerBI5&lt;/a&gt; , USually the number of employee End of Period/Month and start of period/Month are &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Current Employees EOP = CALCULATE(COUNTx(FILTER(Employee,Employee[Start Date]&amp;lt;=max('Date'[Date]) &amp;amp;&amp;amp; (ISBLANK(Employee[End Date]) || Employee[End Date]&amp;gt;max('Date'[Date]))),(Employee[Employee Id ])),CROSSFILTER(Employee[Start Date],'Date'[Date],None))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Current Employees SOP = CALCULATE(COUNTx(FILTER(Employee,Employee[Start Date]&amp;lt;=Min('Date'[Date]) &amp;amp;&amp;amp; (ISBLANK(Employee[End Date]) || Employee[End Date]&amp;gt;Min('Date'[Date]))),(Employee[Employee Id ])),CROSSFILTER(Employee[Start Date],'Date'[Date],None))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&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;</description>
      <pubDate>Tue, 27 Sep 2022 02:26:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-measure-for-staff-turnover/m-p/2798263#M87988</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2022-09-27T02:26:46Z</dc:date>
    </item>
    <item>
      <title>Re: DAX measure for staff turnover</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-measure-for-staff-turnover/m-p/2799037#M88021</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="427697" data-lia-user-login="LearnPowerBI5" class="lia-mention lia-mention-user"&gt;LearnPowerBI5&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Have trouble to follow.&lt;/P&gt;
&lt;P&gt;Would you please share the expected result to help us better understand the logic?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Jay&lt;/P&gt;</description>
      <pubDate>Tue, 27 Sep 2022 08:20:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-measure-for-staff-turnover/m-p/2799037#M88021</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-09-27T08:20:13Z</dc:date>
    </item>
    <item>
      <title>Re: DAX measure for staff turnover</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-measure-for-staff-turnover/m-p/2803095#M88273</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have attached the image for reference. And below is the method through which I have done the calculation.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;How I calculated staff turnover?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;1. Sum the total no. of resources joined&lt;/P&gt;&lt;P&gt;2. Sum the total no. of resources resigned&lt;/P&gt;&lt;P&gt;3. Sum the no. of resources at the start of the month (i.e., a sum only values for the month of January since it is the start of the year)&lt;/P&gt;&lt;P&gt;4. Sum the no. of resources at the end of the month (sum only the values for the month of September this must be dynamic like system date or today’s date and if want to check the year).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So I require help to create a measure for the above.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Sep 2022 14:24:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-measure-for-staff-turnover/m-p/2803095#M88273</guid>
      <dc:creator>LearnPowerBI5</dc:creator>
      <dc:date>2022-09-28T14:24:33Z</dc:date>
    </item>
  </channel>
</rss>

