<?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: Determining missing row information for current time period compared to last time period in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Determining-missing-row-information-for-current-time-period/m-p/4135567#M164270</link>
    <description>&lt;P&gt;Create a dummy table of all the employees considering present all the weeks. Now with this table compare your actual one&lt;/P&gt;</description>
    <pubDate>Thu, 05 Sep 2024 13:35:56 GMT</pubDate>
    <dc:creator>Rupak_bi</dc:creator>
    <dc:date>2024-09-05T13:35:56Z</dc:date>
    <item>
      <title>Determining missing row information for current time period compared to last time period</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Determining-missing-row-information-for-current-time-period/m-p/4135389#M164263</link>
      <description>&lt;P&gt;We are having a problem with occasionally missing a person’s pay period due to a location switch. For example, Jane Doe works on one project the previous week and switches to another this week. The new foreman forgets to add them to the timecard at the new location. Therefore, no record exists at all.&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I am trying to do is identify those that were on payroll last week and flag them if they are missing this week. If they are missing, there is no row entry in the table of them existing at all.&lt;/P&gt;&lt;P&gt;Any suggestion on how to compare the two time periods? &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Sep 2024 12:12:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Determining-missing-row-information-for-current-time-period/m-p/4135389#M164263</guid>
      <dc:creator>efstel</dc:creator>
      <dc:date>2024-09-05T12:12:16Z</dc:date>
    </item>
    <item>
      <title>Re: Determining missing row information for current time period compared to last time period</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Determining-missing-row-information-for-current-time-period/m-p/4135567#M164270</link>
      <description>&lt;P&gt;Create a dummy table of all the employees considering present all the weeks. Now with this table compare your actual one&lt;/P&gt;</description>
      <pubDate>Thu, 05 Sep 2024 13:35:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Determining-missing-row-information-for-current-time-period/m-p/4135567#M164270</guid>
      <dc:creator>Rupak_bi</dc:creator>
      <dc:date>2024-09-05T13:35:56Z</dc:date>
    </item>
    <item>
      <title>Re: Determining missing row information for current time period compared to last time period</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Determining-missing-row-information-for-current-time-period/m-p/4135738#M164278</link>
      <description>&lt;P&gt;Okay I have a table that shows all active employees. I want to list the dates where they aren't showing up at all. Since there is no record on that date, that employee doesn't show up in the system that day at all. I'd also like to graphically show a count of missing time entrys on each date as well.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Sep 2024 14:57:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Determining-missing-row-information-for-current-time-period/m-p/4135738#M164278</guid>
      <dc:creator>efstel</dc:creator>
      <dc:date>2024-09-05T14:57:06Z</dc:date>
    </item>
    <item>
      <title>Re: Determining missing row information for current time period compared to last time period</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Determining-missing-row-information-for-current-time-period/m-p/4137005#M164325</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="578204" data-lia-user-login="efstel" class="lia-mention lia-mention-user"&gt;efstel&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I recommend that you calculate the total number of days of attendance and then subtract the number of days each person was in regular attendance to get the number of days each person was absent.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Suppose you want to check the number of days of absence for everyone from 9/6 to 9/1, you can refer to this.&lt;/P&gt;
&lt;P&gt;All attendance records from 9/6 to 9/1.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;All employees.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Calculate the number of days each employee is absent.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Absence = DATEDIFF(DATE(2024,9,1),DATE(2024,9,6),DAY)-CALCULATE(COUNTROWS(Arrived),Arrived[Name]=MAX(Staff[Name]))&lt;/LI-CODE&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Mengmeng Li&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Sep 2024 07:48:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Determining-missing-row-information-for-current-time-period/m-p/4137005#M164325</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-09-06T07:48:35Z</dc:date>
    </item>
    <item>
      <title>Re: Determining missing row information for current time period compared to last time period</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Determining-missing-row-information-for-current-time-period/m-p/4149444#M164880</link>
      <description>&lt;P&gt;That's not quite what I am looking for. I need to pull the names of the actual persons not in attendance. I don't need a count.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Sep 2024 12:18:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Determining-missing-row-information-for-current-time-period/m-p/4149444#M164880</guid>
      <dc:creator>efstel</dc:creator>
      <dc:date>2024-09-13T12:18:38Z</dc:date>
    </item>
    <item>
      <title>Re: Determining missing row information for current time period compared to last time period</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Determining-missing-row-information-for-current-time-period/m-p/4150654#M164911</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;As you havenot shared any sample data, I assumed the dataset as below&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Based on this employee C and D missing this week.&lt;/P&gt;&lt;P&gt;here how I flaghged it using measure&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Is this whate you are asking?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 14 Sep 2024 10:16:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Determining-missing-row-information-for-current-time-period/m-p/4150654#M164911</guid>
      <dc:creator>Rupak_bi</dc:creator>
      <dc:date>2024-09-14T10:16:20Z</dc:date>
    </item>
  </channel>
</rss>

