<?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: Number of occurences in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-of-occurences/m-p/873346#M7269</link>
    <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;BR /&gt;Please follow this steps&lt;/P&gt;&lt;P&gt;1. Create a table from modeling tab&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;DimSkill = VALUES(Test[Skill])&lt;/LI-CODE&gt;&lt;P&gt;2. Create a flag (measure) to check if a person have selected skills&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Flag = 
VAR _skill = CALCULATE(CONCATENATEX('Test',Test[Skill]," "),ALLEXCEPT(Test,Test[Person]))
VAR _flag = IF(FIND("FALSE",CONCATENATEX(DimSkill,CONTAINSSTRING(_skill,DimSkill[Skill])," "),1,0)=0,1,0)
RETURN _flag&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;3. Finally create one more measure to get totals correct&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Measure = 
VAR _table = SUMMARIZE(Test,Test[Person],"IsSkilled",[Flag])
RETURN COUNTROWS(FILTER(_table,[IsSkilled]=1))&lt;/LI-CODE&gt;</description>
    <pubDate>Thu, 12 Dec 2019 11:46:03 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2019-12-12T11:46:03Z</dc:date>
    <item>
      <title>Number of occurences</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-of-occurences/m-p/873035#M7261</link>
      <description>&lt;DIV class="lia-message-subject lia-component-message-view-widget-subject"&gt;&lt;DIV class="MessageSubject"&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class="lia-message-body lia-component-message-view-widget-body lia-component-body-signature-highlight-escalation lia-component-message-view-widget-body-signature-highlight-escalation"&gt;&lt;DIV class="lia-message-body-content"&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am stuck on this problem from sometime. Here is what i want to do:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a skills filter with around 400 skills. I have data in table with people and their related skills. Something like given below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE border="0" cellspacing="0" cellpadding="0"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Person&lt;/TD&gt;&lt;TD&gt;Skill&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;X&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;Y&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;C&lt;/TD&gt;&lt;TD&gt;Z&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;Y&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;Z&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;X&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;D&lt;/TD&gt;&lt;TD&gt;Z&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;E&lt;/TD&gt;&lt;TD&gt;X&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;F&lt;/TD&gt;&lt;TD&gt;Y&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;F&lt;/TD&gt;&lt;TD&gt;Z&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;D&lt;/TD&gt;&lt;TD&gt;X&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now, when i select X &amp;amp; Y in the skill slicer, i want a person measure to give a value of 2 because only A &amp;amp; B have both the skills, instead it is giving me 5 by filtering on distinct values on person column who have either X or Y.&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 12 Dec 2019 07:22:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-of-occurences/m-p/873035#M7261</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-12-12T07:22:51Z</dc:date>
    </item>
    <item>
      <title>Re: Number of occurences</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-of-occurences/m-p/873346#M7269</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;BR /&gt;Please follow this steps&lt;/P&gt;&lt;P&gt;1. Create a table from modeling tab&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;DimSkill = VALUES(Test[Skill])&lt;/LI-CODE&gt;&lt;P&gt;2. Create a flag (measure) to check if a person have selected skills&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Flag = 
VAR _skill = CALCULATE(CONCATENATEX('Test',Test[Skill]," "),ALLEXCEPT(Test,Test[Person]))
VAR _flag = IF(FIND("FALSE",CONCATENATEX(DimSkill,CONTAINSSTRING(_skill,DimSkill[Skill])," "),1,0)=0,1,0)
RETURN _flag&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;3. Finally create one more measure to get totals correct&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Measure = 
VAR _table = SUMMARIZE(Test,Test[Person],"IsSkilled",[Flag])
RETURN COUNTROWS(FILTER(_table,[IsSkilled]=1))&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 12 Dec 2019 11:46:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-of-occurences/m-p/873346#M7269</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-12-12T11:46:03Z</dc:date>
    </item>
    <item>
      <title>Re: Number of occurences</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-of-occurences/m-p/885095#M7644</link>
      <description>&lt;P&gt;Hi Vimal,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your response; however, it did not solve my purpose.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If i select skills A &amp;amp; B, result should give me count of colleagues who have BOTH the skills.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Dec 2019 10:00:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-of-occurences/m-p/885095#M7644</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-12-27T10:00:54Z</dc:date>
    </item>
    <item>
      <title>Re: Number of occurences</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-of-occurences/m-p/885172#M7648</link>
      <description>&lt;P&gt;Hi Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try adding this as a measure:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;People With Skills = 
VAR SelSkills = VALUES ( 'Test'[Skill] )
VAR NoSelSkills = COUNTROWS ( SelSkills )
VAR PeopleWithSkills =
    FILTER (
        ADDCOLUMNS (
            SUMMARIZE ( 'Test', 'Test'[Person] ),
            "@NoOfSkills", 
                CALCULATE ( COUNTROWS ( FILTER ( 'Test', 'Test'[Skill] IN SelSkills ) ) )
        ),
        [@NoOfSkills] = NoSelSkills
    )
VAR Result = COUNTROWS ( PeopleWithSkills )
RETURN Result&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Martyn&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If I answered your question, please help others by accepting it as a solution.&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Dec 2019 12:09:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-of-occurences/m-p/885172#M7648</guid>
      <dc:creator>MartynRamsden</dc:creator>
      <dc:date>2019-12-27T12:09:32Z</dc:date>
    </item>
    <item>
      <title>Re: Number of occurences</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-of-occurences/m-p/885921#M7680</link>
      <description>&lt;P&gt;Thank you Martyn, but I am unable to get the correct answer through this measure. Just to clarify, i have 3 tables: Skills, People category A, people category B. Skills table has concat of skills from both the other tables. So if i apply this measure that you have suggested individually referring to these tables, i dont get the right answer. Please note that i have created relationships between skills and rest of the two tables basis skills column.&lt;/P&gt;</description>
      <pubDate>Mon, 30 Dec 2019 05:38:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-of-occurences/m-p/885921#M7680</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-12-30T05:38:46Z</dc:date>
    </item>
    <item>
      <title>Re: Number of occurences</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-of-occurences/m-p/886781#M7720</link>
      <description>&lt;P&gt;HI&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Create one dummy table with all your distinct skills.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Don't make relationship of that table with any other table.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Create measure=&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;SelectedSkills = CONCATENATEX(ALLSELECTED('Dummy Skill'[Skill]),'Dummy Skill'[Skill],",",'Dummy Skill'[Skill])&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;This will give you&amp;nbsp; Comma&amp;nbsp;seperated selected skills.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Create one more table&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Summerized Employee = SUMMARIZE(Employye,Employye[Person],"ALLSkill",CONCATENATEX(ALLSELECTED(Employye[Skill]),Employye[Skill],",",Employye[Skill])).&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;This will give you employye person with all skills he has in comma seperation.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Now create one more measure in this table.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;SkillValidation = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;SUMX('Summerized Employee',IF(CONTAINSSTRING('Summerized Employee'[ALLSkill],[SelectedSkills])=TRUE,1,0))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;and filter this measure in visual and set not to 0.&lt;img /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Thanks &amp;amp; regards,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Pravin Wattamwar&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;SPAN class="vanity-name__domain"&gt;&lt;A href="http://www.linkedin.com/in/" target="_blank" rel="noopener"&gt;www.linkedin.com/in/&lt;/A&gt;&lt;/SPAN&gt;&lt;SPAN class="vanity-name__display-name"&gt;pravin-p-wattamwar&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;SPAN class="vanity-name__display-name"&gt;If i solved your problem Give kudos and mark it as solution.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 31 Dec 2019 07:47:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-of-occurences/m-p/886781#M7720</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-12-31T07:47:46Z</dc:date>
    </item>
    <item>
      <title>Re: Number of occurences</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-of-occurences/m-p/902967#M8319</link>
      <description>&lt;P&gt;Thank you Pravin. This solution works as long as the skills are together. If there is even a skill in between the 2, measure doesnt read the same and returns a 0.&lt;/P&gt;</description>
      <pubDate>Fri, 17 Jan 2020 06:56:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-of-occurences/m-p/902967#M8319</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-01-17T06:56:33Z</dc:date>
    </item>
    <item>
      <title>Re: Number of occurences</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-of-occurences/m-p/903171#M8325</link>
      <description>&lt;P&gt;i didn't get your point. Could you please explain what is the issue?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Jan 2020 09:03:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-of-occurences/m-p/903171#M8325</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-01-17T09:03:41Z</dc:date>
    </item>
    <item>
      <title>Re: Number of occurences</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-of-occurences/m-p/903194#M8326</link>
      <description>&lt;P&gt;Sure. If i go by the example that you gave:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Chosen skills: X,Y&lt;/P&gt;&lt;P&gt;Person A: X,Y,Z&lt;/P&gt;&lt;P&gt;Person B: X,Z,Y&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Person A is coming as 1 and B as 0&lt;/P&gt;</description>
      <pubDate>Fri, 17 Jan 2020 09:21:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-of-occurences/m-p/903194#M8326</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-01-17T09:21:07Z</dc:date>
    </item>
    <item>
      <title>Re: Number of occurences</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-of-occurences/m-p/903254#M8329</link>
      <description>&lt;P&gt;if you see concatenation. i have sorted it by skills so you will get X,Y,Z only. not X,Z,Y.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards,&lt;/P&gt;&lt;P&gt;Pravin Wattamwar&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If it resolve your problem mark it as a solution and give kudos.&lt;/P&gt;</description>
      <pubDate>Fri, 17 Jan 2020 09:49:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-of-occurences/m-p/903254#M8329</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-01-17T09:49:32Z</dc:date>
    </item>
    <item>
      <title>Re: Number of occurences</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-of-occurences/m-p/903256#M8330</link>
      <description>&lt;P&gt;Okay. Lets say, i selected X &amp;amp; Z. Y will always come in between, if a person has Y and then it will count him as 0&lt;/P&gt;</description>
      <pubDate>Fri, 17 Jan 2020 09:51:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-of-occurences/m-p/903256#M8330</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-01-17T09:51:30Z</dc:date>
    </item>
    <item>
      <title>Re: Number of occurences</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-of-occurences/m-p/905009#M8454</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does anyone has a solution for this weird issue?&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jan 2020 09:46:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-of-occurences/m-p/905009#M8454</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-01-20T09:46:12Z</dc:date>
    </item>
    <item>
      <title>Re: Number of occurences</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-of-occurences/m-p/905098#M8457</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Create new table&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;AllSKill = VALUES(Sheet1[Skill])&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Add this column in slicer&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Create below&amp;nbsp; measures&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;TotalSelectedSkills = COUNT(AllSKill[Skill])&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Total matching Skills = CALCULATE(COUNT(Sheet1[Skill]),FILTER(all(Sheet1[Skill]),Sheet1[Skill] in ALLSELECTED(AllSKill[Skill])))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Flag = IF([Total matching Skills]=[TotalSelectedSkills],1,0)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Add flag measure to visual level filter and set it to 1.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Thanks &amp;amp; regards,&lt;BR /&gt;Pravin Wattamwar&lt;BR /&gt;&lt;A href="http://www.linkedin.com/in/pravin-p-wattamwar" target="_blank"&gt;www.linkedin.com/in/pravin-p-wattamwar&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;If I resolve your problem Mark it as a solution and give kudos.&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 20 Jan 2020 10:45:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-of-occurences/m-p/905098#M8457</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-01-20T10:45:11Z</dc:date>
    </item>
    <item>
      <title>Re: Number of occurences</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-of-occurences/m-p/908822#M8624</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hey,&lt;/P&gt;&lt;LI-SPOILER&gt;&amp;nbsp;&lt;/LI-SPOILER&gt;&lt;P&gt;Total matching skills measure gives the total of all colleagues who have either of the selected skills and since this wahy it wont be equal to TotalSelectedSkills, flag will stay 0&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jan 2020 03:35:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-of-occurences/m-p/908822#M8624</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-01-23T03:35:00Z</dc:date>
    </item>
    <item>
      <title>Re: Number of occurences</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-of-occurences/m-p/908869#M8626</link>
      <description>Let say u have selected 2 skills selected in slicer.&lt;BR /&gt;Total matching skill check for particular emp does he have all the selected skills n if both are equal then set flag 1.&lt;BR /&gt;&lt;BR /&gt;Try this solution in your desktop..if you face any issue let me know.</description>
      <pubDate>Thu, 23 Jan 2020 05:18:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-of-occurences/m-p/908869#M8626</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-01-23T05:18:39Z</dc:date>
    </item>
    <item>
      <title>Re: Number of occurences</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-of-occurences/m-p/908879#M8627</link>
      <description>&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&lt;img /&gt;&lt;/DIV&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Thu, 23 Jan 2020 05:30:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-of-occurences/m-p/908879#M8627</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-01-23T05:30:21Z</dc:date>
    </item>
    <item>
      <title>Re: Number of occurences</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-of-occurences/m-p/909100#M8632</link>
      <description>&lt;P&gt;You need to add it in table not in card.&lt;/P&gt;&lt;P&gt;Card will give you overall summerize answer.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Drag Name,Skills and above two measures in table visual. and filter measure in visual level filter and set it to 1.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The table will display name of candidates having all the skills selected in slicer.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards,&lt;BR /&gt;Pravin Wattamwar&lt;BR /&gt;&lt;A href="http://www.linkedin.com/in/pravin-p-wattamwar" target="_blank"&gt;www.linkedin.com/in/pravin-p-wattamwar&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;If I resolve your problem Mark it as a solution and give kudos.&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jan 2020 08:07:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-of-occurences/m-p/909100#M8632</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-01-23T08:07:58Z</dc:date>
    </item>
    <item>
      <title>Re: Number of occurences</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-of-occurences/m-p/909541#M8644</link>
      <description>&lt;P&gt;Oh. Thank you. It does work in a table. However, my motive is to show this as a number because i cannot show the names to the audience. That is a little confidential.&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jan 2020 14:12:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-of-occurences/m-p/909541#M8644</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-01-23T14:12:13Z</dc:date>
    </item>
    <item>
      <title>Re: Number of occurences</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-of-occurences/m-p/909621#M8648</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Create table&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ALLSKILL=values(Sheet1[Skill])&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Create measure&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Flag_ = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;var TotalSelectedSkills = COUNT(AllSKill[Skill])&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;var TotalMatchingSkills = CALCULATE(COUNT(Sheet1[Skill]),FILTER(all(Sheet1[Skill]),Sheet1[Skill] in ALLSELECTED(AllSKill[Skill])))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Return&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;IF(TotalmatchingSkills=TotalSelectedSkills,1,0)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Then create one more measure&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Total = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;var tab=SUMMARIZE(Sheet1,Sheet1[Person],"Flag",[Flag_])&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;return&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;COUNTROWS(FILTER(tab,[Flag]=1))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Total will give you distinct count of employees.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Still facing issues let me know.&lt;img /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Thanks &amp;amp; regards,&lt;BR /&gt;Pravin Wattamwar&lt;BR /&gt;&lt;A href="http://www.linkedin.com/in/pravin-p-wattamwar" target="_blank"&gt;www.linkedin.com/in/pravin-p-wattamwar&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;If I resolve your problem Mark it as a solution and give kudos.&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jan 2020 14:53:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-of-occurences/m-p/909621#M8648</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-01-23T14:53:57Z</dc:date>
    </item>
    <item>
      <title>Re: Number of occurences</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-of-occurences/m-p/929712#M9510</link>
      <description>&lt;P&gt;Thank you! This works like wonder.&lt;/P&gt;</description>
      <pubDate>Wed, 12 Feb 2020 08:35:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-of-occurences/m-p/929712#M9510</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-02-12T08:35:15Z</dc:date>
    </item>
  </channel>
</rss>

