<?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: Count the number of occurrence of a value in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-the-number-of-occurrence-of-a-value/m-p/2615327#M75992</link>
    <description>&lt;P&gt;&lt;STRIKE&gt;I'm creating a measure. The "PeriodDate"&amp;nbsp;is a calculated column.&lt;/STRIKE&gt;&lt;/P&gt;</description>
    <pubDate>Sat, 02 Jul 2022 15:56:59 GMT</pubDate>
    <dc:creator>tbhadmus</dc:creator>
    <dc:date>2022-07-02T15:56:59Z</dc:date>
    <item>
      <title>Count the number of occurrence of a value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-the-number-of-occurrence-of-a-value/m-p/2597588#M75000</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;I want to get the number of occurrences of each DQV Category. The QDV Category is a result of a measure based on the Overall Average score. For instance, "Meeting Standard" appears only once based on the selected Filter but I am getting 0.&lt;BR /&gt;Any help would be highly appreciated.&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jun 2022 12:03:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-the-number-of-occurrence-of-a-value/m-p/2597588#M75000</guid>
      <dc:creator>tbhadmus</dc:creator>
      <dc:date>2022-06-23T12:03:27Z</dc:date>
    </item>
    <item>
      <title>Re: Count the number of occurrence of a value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-the-number-of-occurrence-of-a-value/m-p/2597662#M75003</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="395756" data-lia-user-login="tbhadmus" class="lia-mention lia-mention-user"&gt;tbhadmus&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Following is the general idea. In order to include the category slicer with the formula I need more information about this slicer and the measure itself.&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;Count =
VAR T1 =
    SUMMARIZE ( TableName, TableName[Country], TableName[IP] )
VAR T2 =
    ADDCOLUMNS ( T1, "@QDV_Category", [QDV Category] )
VAR T3 =
    FILTER ( T2, [@QDV_Category] = "Meeting Standard" )
RETURN
    COUNTROWS ( T3 )&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 23 Jun 2022 12:40:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-the-number-of-occurrence-of-a-value/m-p/2597662#M75003</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-06-23T12:40:45Z</dc:date>
    </item>
    <item>
      <title>Re: Count the number of occurrence of a value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-the-number-of-occurrence-of-a-value/m-p/2597693#M75007</link>
      <description>&lt;P&gt;Hi tamerj1,&amp;nbsp;&lt;BR /&gt;thanks for your response.&amp;nbsp;&lt;BR /&gt;The slicer represents the Fiscal Year. If I select a fiscal year, the total occurrence of the DQV category should be displayed.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jun 2022 12:54:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-the-number-of-occurrence-of-a-value/m-p/2597693#M75007</guid>
      <dc:creator>tbhadmus</dc:creator>
      <dc:date>2022-06-23T12:54:38Z</dc:date>
    </item>
    <item>
      <title>Re: Count the number of occurrence of a value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-the-number-of-occurrence-of-a-value/m-p/2597711#M75009</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="395756" data-lia-user-login="tbhadmus" class="lia-mention lia-mention-user"&gt;tbhadmus&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Ok then the same code should work. Please try and let me know. Thank you&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jun 2022 12:57:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-the-number-of-occurrence-of-a-value/m-p/2597711#M75009</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-06-23T12:57:19Z</dc:date>
    </item>
    <item>
      <title>Re: Count the number of occurrence of a value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-the-number-of-occurrence-of-a-value/m-p/2597723#M75010</link>
      <description>&lt;P&gt;I tried the formula but it's the same as what I initially had:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;numb&lt;/SPAN&gt;&lt;SPAN&gt; =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;DISTINCTCOUNT&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Implementing Partner'[Implementing Partner]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;FILTER&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;ALLSELECTED&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Implementing Partner'[Implementing Partner]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;'1_DQA Measures'&lt;/SPAN&gt;&lt;SPAN&gt;[QDV Category]&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;"Meeting Standard"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&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;IF&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;NUMB&lt;/SPAN&gt;&lt;SPAN&gt; &amp;lt;&amp;gt; &lt;/SPAN&gt;&lt;SPAN&gt;0&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;numb&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;0&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 23 Jun 2022 13:00:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-the-number-of-occurrence-of-a-value/m-p/2597723#M75010</guid>
      <dc:creator>tbhadmus</dc:creator>
      <dc:date>2022-06-23T13:00:46Z</dc:date>
    </item>
    <item>
      <title>Re: Count the number of occurrence of a value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-the-number-of-occurrence-of-a-value/m-p/2597731#M75012</link>
      <description>&lt;P&gt;The code works if no filter is selected, but when I select a filter, it gives me a value of zero instead of 1 from the picture I posted.&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jun 2022 13:04:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-the-number-of-occurrence-of-a-value/m-p/2597731#M75012</guid>
      <dc:creator>tbhadmus</dc:creator>
      <dc:date>2022-06-23T13:04:17Z</dc:date>
    </item>
    <item>
      <title>Re: Count the number of occurrence of a value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-the-number-of-occurrence-of-a-value/m-p/2597862#M75018</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="395756" data-lia-user-login="tbhadmus" class="lia-mention lia-mention-user"&gt;tbhadmus&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;You mean when you elect a fiscal year? It should work unless I'm missing something. Would you please provide more details about the data model and tables? Perhaps some screenshots?&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jun 2022 13:43:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-the-number-of-occurrence-of-a-value/m-p/2597862#M75018</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-06-23T13:43:03Z</dc:date>
    </item>
    <item>
      <title>Re: Count the number of occurrence of a value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-the-number-of-occurrence-of-a-value/m-p/2608845#M75595</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="395756" data-lia-user-login="tbhadmus" class="lia-mention lia-mention-user"&gt;tbhadmus&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you provide some sample data? And what you expect the output to be, which can be shown in pictures.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Community Support Team _Charlotte&lt;/P&gt;
&lt;P&gt;If this post &lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider &lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&lt;/EM&gt;&lt;/STRONG&gt; to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jun 2022 08:49:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-the-number-of-occurrence-of-a-value/m-p/2608845#M75595</guid>
      <dc:creator>v-zhangti</dc:creator>
      <dc:date>2022-06-29T08:49:54Z</dc:date>
    </item>
    <item>
      <title>Re: Count the number of occurrence of a value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-the-number-of-occurrence-of-a-value/m-p/2615124#M75954</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;&amp;nbsp;thanks for your response. The problem was with my filters and I already figured it out. Thanks a lot for the help!&lt;BR /&gt;&lt;BR /&gt;I have another challenge which I need help with.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;In the table above, I want to calculate the NextDVDate based on the values in the Average M&amp;amp;E column. The Average M&amp;amp;E column is a measure and the condition for the calculation is as below:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;But I am getting an error in my calculation. Any help will be higlhy appreciated.&amp;nbsp;&lt;BR /&gt;Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Sat, 02 Jul 2022 07:43:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-the-number-of-occurrence-of-a-value/m-p/2615124#M75954</guid>
      <dc:creator>tbhadmus</dc:creator>
      <dc:date>2022-07-02T07:43:09Z</dc:date>
    </item>
    <item>
      <title>Re: Count the number of occurrence of a value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-the-number-of-occurrence-of-a-value/m-p/2615148#M75964</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="395756" data-lia-user-login="tbhadmus" class="lia-mention lia-mention-user"&gt;tbhadmus&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;please try&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;NextDVDate =
VAR avgScore = [Average M&amp;amp;E]
VAR date_ =
    SELECTEDVALUE ( 'Data Element Values'[PeriodDate] )
RETURN
    SWITCH (
        TRUE (),
        avgScore &amp;gt;= 95
            &amp;amp;&amp;amp; avgScore &amp;lt;= 100, ( date_ + 365 ),
        avgScore &amp;gt;= 80
            &amp;amp;&amp;amp; avgScore &amp;lt;= 94, ( date_ + 365 ),
        avgScore &amp;lt; 80, ( date_ + 90 ),
        BLANK ()
    )&lt;/LI-CODE&gt;</description>
      <pubDate>Sat, 02 Jul 2022 08:58:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-the-number-of-occurrence-of-a-value/m-p/2615148#M75964</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-07-02T08:58:22Z</dc:date>
    </item>
    <item>
      <title>Re: Count the number of occurrence of a value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-the-number-of-occurrence-of-a-value/m-p/2615272#M75980</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@&lt;SPAN&gt;tamerj1, thanks for your swift response.&lt;BR /&gt;I tried the above formula but I got Blank as my result. Below is the table using the formula above:&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 02 Jul 2022 13:01:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-the-number-of-occurrence-of-a-value/m-p/2615272#M75980</guid>
      <dc:creator>tbhadmus</dc:creator>
      <dc:date>2022-07-02T13:01:57Z</dc:date>
    </item>
    <item>
      <title>Re: Count the number of occurrence of a value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-the-number-of-occurrence-of-a-value/m-p/2615282#M75981</link>
      <description>&lt;P&gt;The problem here is that the "date_" variable is returning Blank().&lt;/P&gt;</description>
      <pubDate>Sat, 02 Jul 2022 13:34:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-the-number-of-occurrence-of-a-value/m-p/2615282#M75981</guid>
      <dc:creator>tbhadmus</dc:creator>
      <dc:date>2022-07-02T13:34:43Z</dc:date>
    </item>
    <item>
      <title>Re: Count the number of occurrence of a value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-the-number-of-occurrence-of-a-value/m-p/2615285#M75982</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="395756" data-lia-user-login="tbhadmus" class="lia-mention lia-mention-user"&gt;tbhadmus&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Looks like PeriodDate is a measur? In this case no need for SELECTEDVALUE just refer to the measure directly&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 02 Jul 2022 13:49:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-the-number-of-occurrence-of-a-value/m-p/2615285#M75982</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-07-02T13:49:32Z</dc:date>
    </item>
    <item>
      <title>Re: Count the number of occurrence of a value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-the-number-of-occurrence-of-a-value/m-p/2615288#M75983</link>
      <description>&lt;P&gt;Column PeriodDate is a Calculated Column. Find below:&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;PeriodDate = &lt;/SPAN&gt;&lt;SPAN&gt;IF&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;NOT&lt;/SPAN&gt; &lt;SPAN&gt;CONTAINSSTRING&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;[Period]&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"Q"&lt;/SPAN&gt;&lt;SPAN&gt;), (&lt;/SPAN&gt;&lt;SPAN&gt;DATE&lt;/SPAN&gt;&lt;SPAN&gt;((&lt;/SPAN&gt;&lt;SPAN&gt;[Period]&lt;/SPAN&gt;&lt;SPAN&gt;-&lt;/SPAN&gt;&lt;SPAN&gt;MOD&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;[Period]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;100&lt;/SPAN&gt;&lt;SPAN&gt;))/&lt;/SPAN&gt;&lt;SPAN&gt;100&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;MOD&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;[Period]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;100&lt;/SPAN&gt;&lt;SPAN&gt;), &lt;/SPAN&gt;&lt;SPAN&gt;1&lt;/SPAN&gt;&lt;SPAN&gt;)), &lt;/SPAN&gt;&lt;SPAN&gt;BLANK&lt;/SPAN&gt;&lt;SPAN&gt;())&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Sat, 02 Jul 2022 13:54:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-the-number-of-occurrence-of-a-value/m-p/2615288#M75983</guid>
      <dc:creator>tbhadmus</dc:creator>
      <dc:date>2022-07-02T13:54:56Z</dc:date>
    </item>
    <item>
      <title>Re: Count the number of occurrence of a value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-the-number-of-occurrence-of-a-value/m-p/2615296#M75985</link>
      <description>&lt;P&gt;Please try by wrapping SELECTEDVALUE with CALCULATE&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 02 Jul 2022 14:20:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-the-number-of-occurrence-of-a-value/m-p/2615296#M75985</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-07-02T14:20:50Z</dc:date>
    </item>
    <item>
      <title>Re: Count the number of occurrence of a value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-the-number-of-occurrence-of-a-value/m-p/2615314#M75989</link>
      <description>&lt;P&gt;I did that as well but I still got Blank()&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 02 Jul 2022 15:34:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-the-number-of-occurrence-of-a-value/m-p/2615314#M75989</guid>
      <dc:creator>tbhadmus</dc:creator>
      <dc:date>2022-07-02T15:34:43Z</dc:date>
    </item>
    <item>
      <title>Re: Count the number of occurrence of a value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-the-number-of-occurrence-of-a-value/m-p/2615320#M75991</link>
      <description>&lt;P&gt;Are you creating a calculated column or a measure?&lt;/P&gt;</description>
      <pubDate>Sat, 02 Jul 2022 15:51:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-the-number-of-occurrence-of-a-value/m-p/2615320#M75991</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-07-02T15:51:36Z</dc:date>
    </item>
    <item>
      <title>Re: Count the number of occurrence of a value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-the-number-of-occurrence-of-a-value/m-p/2615327#M75992</link>
      <description>&lt;P&gt;&lt;STRIKE&gt;I'm creating a measure. The "PeriodDate"&amp;nbsp;is a calculated column.&lt;/STRIKE&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 02 Jul 2022 15:56:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-the-number-of-occurrence-of-a-value/m-p/2615327#M75992</guid>
      <dc:creator>tbhadmus</dc:creator>
      <dc:date>2022-07-02T15:56:59Z</dc:date>
    </item>
    <item>
      <title>Re: Count the number of occurrence of a value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-the-number-of-occurrence-of-a-value/m-p/2615332#M75993</link>
      <description>&lt;P&gt;What are slicing by in your matrix?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 02 Jul 2022 16:04:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-the-number-of-occurrence-of-a-value/m-p/2615332#M75993</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-07-02T16:04:25Z</dc:date>
    </item>
    <item>
      <title>Re: Count the number of occurrence of a value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-the-number-of-occurrence-of-a-value/m-p/2615335#M75994</link>
      <description>&lt;P&gt;I'm slicing by the countries&lt;/P&gt;</description>
      <pubDate>Sat, 02 Jul 2022 16:06:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-the-number-of-occurrence-of-a-value/m-p/2615335#M75994</guid>
      <dc:creator>tbhadmus</dc:creator>
      <dc:date>2022-07-02T16:06:44Z</dc:date>
    </item>
  </channel>
</rss>

