<?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: total numbers of employees tell today in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/total-numbers-of-employees-tell-today/m-p/3381549#M127411</link>
    <description>&lt;P&gt;This query will group the data by year and month of the Date Of Joining column, and count the number of employees for each group. The result will be a table with columns for the year, month, and total number of employees.&lt;/P&gt;&lt;P&gt;If you want to filter the data by a specific month, you can add a WHERE clause to the query. For example, to filter by January 2023, you can use this query:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SELECT&lt;BR /&gt;YEAR([Date Of Joining]) AS [Year],&lt;BR /&gt;MONTH([Date Of Joining]) AS [Month],&lt;BR /&gt;COUNT([Employee Id]) AS [Total Employees]&lt;BR /&gt;FROM vw_Basicinfo&lt;BR /&gt;WHERE [Employee Status] = 'Active' AND LAST_WORKING_DATE IS NULL&lt;BR /&gt;AND [Date Of Joining] &amp;lt;= '2023-01-31'&lt;BR /&gt;GROUP BY YEAR([Date Of Joining]), MONTH([Date Of Joining])&lt;BR /&gt;ORDER BY [Year], [Month]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This query will return the total number of employees for each month up to and including January 2023.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 16 Aug 2023 01:15:14 GMT</pubDate>
    <dc:creator>Alef_Ricardo_</dc:creator>
    <dc:date>2023-08-16T01:15:14Z</dc:date>
    <item>
      <title>total numbers of employees tell today</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/total-numbers-of-employees-tell-today/m-p/3380704#M127366</link>
      <description>&lt;P&gt;&lt;SPAN&gt;hi i have table called vw_Basicinfo have these columns Date Of Joining , Employee Id,Employee Status and LAST_WORKING_DATE so i need to get total employees count whose the Employee Statusis Active and LAST_WORKING_DATE is null and need it grouped monthly mean I need to sum of total employees for each month depending on Date Of Joining if filterd by any month show me the total employees tell this month&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Aug 2023 13:27:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/total-numbers-of-employees-tell-today/m-p/3380704#M127366</guid>
      <dc:creator>shaher12</dc:creator>
      <dc:date>2023-08-15T13:27:43Z</dc:date>
    </item>
    <item>
      <title>Re: total numbers of employees tell today</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/total-numbers-of-employees-tell-today/m-p/3381546#M127409</link>
      <description>&lt;P&gt;Hi there! &lt;span class="lia-unicode-emoji" title=":smiling_face_with_smiling_eyes:"&gt;😊&lt;/span&gt;&lt;/P&gt;&lt;P&gt;If you want to get the total count of employees whose Employee Status is Active and LAST_WORKING_DATE is null, grouped by month, you can use a SQL query like this:&lt;/P&gt;</description>
      <pubDate>Wed, 16 Aug 2023 01:14:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/total-numbers-of-employees-tell-today/m-p/3381546#M127409</guid>
      <dc:creator>Alef_Ricardo_</dc:creator>
      <dc:date>2023-08-16T01:14:41Z</dc:date>
    </item>
    <item>
      <title>Re: total numbers of employees tell today</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/total-numbers-of-employees-tell-today/m-p/3381547#M127410</link>
      <description>&lt;P&gt;SELECT&lt;BR /&gt;YEAR([Date Of Joining]) AS [Year],&lt;BR /&gt;MONTH([Date Of Joining]) AS [Month],&lt;BR /&gt;COUNT([Employee Id]) AS [Total Employees]&lt;BR /&gt;FROM vw_Basicinfo&lt;BR /&gt;WHERE [Employee Status] = 'Active' AND LAST_WORKING_DATE IS NULL&lt;BR /&gt;GROUP BY YEAR([Date Of Joining]), MONTH([Date Of Joining])&lt;BR /&gt;ORDER BY [Year], [Month]&lt;/P&gt;</description>
      <pubDate>Wed, 16 Aug 2023 01:14:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/total-numbers-of-employees-tell-today/m-p/3381547#M127410</guid>
      <dc:creator>Alef_Ricardo_</dc:creator>
      <dc:date>2023-08-16T01:14:50Z</dc:date>
    </item>
    <item>
      <title>Re: total numbers of employees tell today</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/total-numbers-of-employees-tell-today/m-p/3381549#M127411</link>
      <description>&lt;P&gt;This query will group the data by year and month of the Date Of Joining column, and count the number of employees for each group. The result will be a table with columns for the year, month, and total number of employees.&lt;/P&gt;&lt;P&gt;If you want to filter the data by a specific month, you can add a WHERE clause to the query. For example, to filter by January 2023, you can use this query:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SELECT&lt;BR /&gt;YEAR([Date Of Joining]) AS [Year],&lt;BR /&gt;MONTH([Date Of Joining]) AS [Month],&lt;BR /&gt;COUNT([Employee Id]) AS [Total Employees]&lt;BR /&gt;FROM vw_Basicinfo&lt;BR /&gt;WHERE [Employee Status] = 'Active' AND LAST_WORKING_DATE IS NULL&lt;BR /&gt;AND [Date Of Joining] &amp;lt;= '2023-01-31'&lt;BR /&gt;GROUP BY YEAR([Date Of Joining]), MONTH([Date Of Joining])&lt;BR /&gt;ORDER BY [Year], [Month]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This query will return the total number of employees for each month up to and including January 2023.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Aug 2023 01:15:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/total-numbers-of-employees-tell-today/m-p/3381549#M127411</guid>
      <dc:creator>Alef_Ricardo_</dc:creator>
      <dc:date>2023-08-16T01:15:14Z</dc:date>
    </item>
  </channel>
</rss>

