<?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: Measure DAX Formula - to calculate number of instances a word appear in another column in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-DAX-Formula-to-calculate-number-of-instances-a-word/m-p/2593482#M74771</link>
    <description>&lt;P&gt;Thanks mate, it worked. How do I mark this as a solution?&lt;/P&gt;</description>
    <pubDate>Wed, 22 Jun 2022 01:14:17 GMT</pubDate>
    <dc:creator>umeshbanga</dc:creator>
    <dc:date>2022-06-22T01:14:17Z</dc:date>
    <item>
      <title>Measure DAX Formula - to calculate number of instances a word appear in another column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-DAX-Formula-to-calculate-number-of-instances-a-word/m-p/2590893#M74634</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am looking to find a formula, to calculate a measure.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Scenario&lt;/STRONG&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;I have 2 columns - "Licensee" and "Advisers"&lt;/LI&gt;&lt;LI&gt;Multiple Advisers can belong to the same licensee&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Ask&lt;/P&gt;&lt;P&gt;how to calculate a measure to&amp;nbsp;&lt;U&gt;That I can use in "Card" visual,&amp;nbsp;&amp;nbsp;&lt;/U&gt; to &lt;STRONG&gt;show case number of Licensee with more than 20 advisers only.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jun 2022 03:12:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-DAX-Formula-to-calculate-number-of-instances-a-word/m-p/2590893#M74634</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-06-21T03:12:18Z</dc:date>
    </item>
    <item>
      <title>Re: Measure DAX Formula - to calculate number of instances a word appear in another column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-DAX-Formula-to-calculate-number-of-instances-a-word/m-p/2590924#M74637</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;a small sample data would be greatly useful to support with accurate code.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jun 2022 03:23:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-DAX-Formula-to-calculate-number-of-instances-a-word/m-p/2590924#M74637</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-06-21T03:23:31Z</dc:date>
    </item>
    <item>
      <title>Re: Measure DAX Formula - to calculate number of instances a word appear in another column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-DAX-Formula-to-calculate-number-of-instances-a-word/m-p/2590931#M74638</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I am not sure without seeing your data model, however, I tried to create a sample pbix file like below.&lt;/P&gt;
&lt;P&gt;Please check the attached file and the below measure.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Licensee count (more than 20 advisers only) measure: =
VAR _newtable =
    ADDCOLUMNS (
        VALUES ( Data[Licensee] ),
        "@countadvisers", CALCULATE ( COUNTROWS ( VALUES ( Data[Advisers] ) ) )
    )
VAR _filternewtable =
    FILTER ( _newtable, [@countadvisers] &amp;gt; 20 )
RETURN
    COUNTROWS ( _filternewtable )
&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 21 Jun 2022 03:25:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-DAX-Formula-to-calculate-number-of-instances-a-word/m-p/2590931#M74638</guid>
      <dc:creator>Jihwan_Kim</dc:creator>
      <dc:date>2022-06-21T03:25:39Z</dc:date>
    </item>
    <item>
      <title>Re: Measure DAX Formula - to calculate number of instances a word appear in another column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-DAX-Formula-to-calculate-number-of-instances-a-word/m-p/2593482#M74771</link>
      <description>&lt;P&gt;Thanks mate, it worked. How do I mark this as a solution?&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jun 2022 01:14:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-DAX-Formula-to-calculate-number-of-instances-a-word/m-p/2593482#M74771</guid>
      <dc:creator>umeshbanga</dc:creator>
      <dc:date>2022-06-22T01:14:17Z</dc:date>
    </item>
  </channel>
</rss>

