<?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 DAX measure for when someone DOES NOT have a certification. in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-DAX-measure-for-when-someone-DOES-NOT-have-a/m-p/4080106#M161969</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="561706" data-lia-user-login="CBCKV" class="lia-mention lia-mention-user"&gt;CBCKV&lt;/a&gt;&amp;nbsp;, Try using below mentioned measure&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Missing Certification Flag =&lt;BR /&gt;VAR SelectedCertification = "Workplace First Aid Course" -- Replace with your specific certification name&lt;BR /&gt;RETURN&lt;BR /&gt;IF (&lt;BR /&gt;ISBLANK (&lt;BR /&gt;CALCULATE (&lt;BR /&gt;COUNTROWS('Certifications Data'),&lt;BR /&gt;'Certifications Data'[Certification Name] = SelectedCertification,&lt;BR /&gt;'Certifications Data'[EmployeeID] = MAX('Employees'[EmployeeID])&lt;BR /&gt;)&lt;BR /&gt;),&lt;BR /&gt;1,&lt;BR /&gt;0&lt;BR /&gt;)&lt;/P&gt;</description>
    <pubDate>Mon, 05 Aug 2024 06:48:58 GMT</pubDate>
    <dc:creator>bhanu_gautam</dc:creator>
    <dc:date>2024-08-05T06:48:58Z</dc:date>
    <item>
      <title>Create a DAX measure for when someone DOES NOT have a certification.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-DAX-measure-for-when-someone-DOES-NOT-have-a/m-p/4079721#M161967</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to create a measure (or a calculated column) that is a flag for when an employee does not hold a specific certification. For instance, I have a certification called "Workplace First Aid Course" I have assigned this to many employees but I want to identify those that do not have that certification assigned to them at all. Whenever I try to do this the data in my table seems to repeat other unrelated fields such as teams and locations, i.e the flag itself will work ok (displaying 0 for does have it and 1 for does not) but I cant use any filters and the table displays all of our locations and teams repeat for each individual record. For reference this is the DAX I currently have:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Missing Certification Flag =&lt;BR /&gt;VAR SelectedCertification = SELECTEDVALUE('Certifications Data'[Certification Name])&lt;BR /&gt;RETURN&lt;BR /&gt;IF (&lt;BR /&gt;ISBLANK (&lt;BR /&gt;CALCULATE (&lt;BR /&gt;COUNTROWS('Certifications Data'),&lt;BR /&gt;'Certifications Data'[Certification Name] = SelectedCertification,&lt;BR /&gt;'Certifications Data'[EmployeeID] = MAX('Employees'[EmployeeID]),&lt;BR /&gt;ALLSELECTED('Certifications Data')&lt;BR /&gt;)&lt;BR /&gt;),&lt;BR /&gt;1,&lt;BR /&gt;0&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Mon, 05 Aug 2024 04:28:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-DAX-measure-for-when-someone-DOES-NOT-have-a/m-p/4079721#M161967</guid>
      <dc:creator>CBCKV</dc:creator>
      <dc:date>2024-08-05T04:28:03Z</dc:date>
    </item>
    <item>
      <title>Re: Create a DAX measure for when someone DOES NOT have a certification.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-DAX-measure-for-when-someone-DOES-NOT-have-a/m-p/4080106#M161969</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="561706" data-lia-user-login="CBCKV" class="lia-mention lia-mention-user"&gt;CBCKV&lt;/a&gt;&amp;nbsp;, Try using below mentioned measure&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Missing Certification Flag =&lt;BR /&gt;VAR SelectedCertification = "Workplace First Aid Course" -- Replace with your specific certification name&lt;BR /&gt;RETURN&lt;BR /&gt;IF (&lt;BR /&gt;ISBLANK (&lt;BR /&gt;CALCULATE (&lt;BR /&gt;COUNTROWS('Certifications Data'),&lt;BR /&gt;'Certifications Data'[Certification Name] = SelectedCertification,&lt;BR /&gt;'Certifications Data'[EmployeeID] = MAX('Employees'[EmployeeID])&lt;BR /&gt;)&lt;BR /&gt;),&lt;BR /&gt;1,&lt;BR /&gt;0&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Mon, 05 Aug 2024 06:48:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-DAX-measure-for-when-someone-DOES-NOT-have-a/m-p/4080106#M161969</guid>
      <dc:creator>bhanu_gautam</dc:creator>
      <dc:date>2024-08-05T06:48:58Z</dc:date>
    </item>
    <item>
      <title>Re: Create a DAX measure for when someone DOES NOT have a certification.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-DAX-measure-for-when-someone-DOES-NOT-have-a/m-p/4082269#M162050</link>
      <description>&lt;P&gt;Hi Bhanu,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Will I have to do this for each certification individually?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Aug 2024 20:05:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-DAX-measure-for-when-someone-DOES-NOT-have-a/m-p/4082269#M162050</guid>
      <dc:creator>CBCKV</dc:creator>
      <dc:date>2024-08-05T20:05:39Z</dc:date>
    </item>
  </channel>
</rss>

